{"$schema":"https://wellknown.network/schemas/agent-record-v1.json","schemaVersion":"1","id":"ag_xxpzckcu6gmx","handle":"iflow-mcp-python-apple-mcp","url":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp","links":{"self":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp/record.json","html":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp","markdown":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp/record.md","api":"https://wellknown.network/api/v1/agents/iflow-mcp-python-apple-mcp","status":"https://wellknown.network/api/v1/agents/iflow-mcp-python-apple-mcp/status","claim":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp/claim","claimApi":"https://wellknown.network/api/v1/claims","claimDescriptor":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp/claim.json","badge":"https://wellknown.network/agents/iflow-mcp-python-apple-mcp/badge.svg","openapi":"https://wellknown.network/openapi.json","history":"https://wellknown.network/api/v1/agents/iflow-mcp-python-apple-mcp/history","tools":"https://wellknown.network/api/v1/agents/iflow-mcp-python-apple-mcp/tools"},"ard":{"identifier":"urn:air::server:iflow-mcp-python-apple-mcp","type":"application/mcp-server-card+json"},"kind":"mcp_server","declared":{"name":"iflow-mcp_python-apple-mcp","summary":"A Python implementation of the Model Context Protocol server for Apple Applications","description":"# Python Apple MCP (Model Context Protocol)\n\nA Python implementation of the server that handles interactions with macOS applications such as Contacts, Notes, Mail, Messages, Reminders, Calendar, and Maps using FastMCP.\n\n## Features\n\n- Interact with macOS native applications through AppleScript\n- Asynchronous operations for better performance\n- Comprehensive error handling\n- Type-safe interfaces using Pydantic models\n- Extensive test coverage\n- Modular design for easy extension\n\n## Supported Applications\n\n- Contacts\n- Notes\n- Mail\n- Messages\n- Reminders\n- Calendar\n- Maps\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/jxnl/python-apple-mcp.git\ncd python-apple-mcp\n```\n\n2. Create a virtual environment:\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n4. Install test dependencies (optional):\n```bash\npip install -r requirements-test.txt\n```\n\n## Usage\n\n### Basic Example\n\n```python\nfrom apple_mcp import FastMCP, Context\n\n# Initialize FastMCP server\nmcp = FastMCP(\"Apple MCP\")\n\n# Use the tools\n@mcp.tool()\ndef find_contact(name: str) -> List[Contact]:\n    \"\"\"Search for contacts by name\"\"\"\n    # Implementation here\n    pass\n\n# Run the server\nif __name__ == \"__main__\":\n    mcp.run()\n```\n\n### Using Individual Modules\n\n```python\nfrom utils.contacts import ContactsModule\nfrom utils.notes import NotesModule\n\n# Initialize modules\ncontacts = ContactsModule()\nnotes = NotesModule()\n\n# Use the modules\nasync def main():\n    # Find a contact\n    contact = await contacts.find_contact(\"John\")\n    \n    # Create a note\n    await notes.create_note(\n        title=\"Meeting Notes\",\n        body=\"Discussion points...\",\n        folder_name=\"Work\"\n    )\n\n# Run the async code\nimport asyncio\nasyncio.run(main())\n```\n\n## Testing\n\nRun the test suite:\n```bash\npytest\n```\n\nRun tests with coverage:\n```bash\npytest --cov=utils tests/\n```\n\nRun specific test file:\n`…","publisher":null,"homepage":"https://github.com/jxnl/python-apple-mcp","repository":"https://github.com/jxnl/python-apple-mcp","version":"0.1.0","license":"MIT","protocols":["mcp"],"tags":["mcp"],"pricing":null,"endpoints":[{"url":"pypi:iflow-mcp_python-apple-mcp","type":"package_pypi","auth":null,"probeable":false}],"skills":null,"tools":null,"extra":null,"attribution":{"kind":"pypi","name":"pypi","license":"pypi","repoUrl":"pypi","summary":"pypi","version":"pypi","description":"pypi","homepageUrl":"pypi"}},"derived":{"capabilities":[{"slug":"dev.version-control","name":"Version Control","confidence":1,"provenance":"derived"},{"slug":"productivity.calendar","name":"Calendar & Scheduling","confidence":0.814,"provenance":"derived"}],"categories":["dev","productivity"],"language":"en"},"observed":{"status":"unknown","statusReason":"Distributed as a package to run locally; no network endpoint to check.","lastOkAt":null,"lastProbedAt":null,"statusComputedAt":null,"reliability30d":null,"latestObservations":[],"tools":null,"package":{"name":"iflow-mcp_python-apple-mcp","registry":"pypi","observedAt":"2026-09-15T19:23:34.518Z","publishedAt":"2025-11-27T08:35:08.131160Z","latestVersion":"0.1.0"},"toolSurface":null,"endpointFacts":[]},"verification":{"claimed":false,"claimedAt":null,"proofs":[]},"provenance":{"sources":[{"source":"pypi","key":"iflow-mcp_python-apple-mcp","url":"https://pypi.org/project/iflow-mcp_python-apple-mcp/","firstSeenAt":"2026-09-09T20:25:16.691Z","fetchedAt":"2026-09-15T19:22:52.180Z","normalizedAt":"2026-09-15T19:22:52.180Z"}]},"firstSeenAt":"2026-09-09T20:25:16.691Z","updatedAt":"2026-09-15T19:23:34.518Z"}