apple-suite-mcp
Provides tools to interact with built-in Apple apps on macOS: Mail, Contacts, Calendar, Notes, and Reminders. Enables reading and sending emails, managing contacts, events, notes, and reminders through these apps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@apple-suite-mcpwhat's on my calendar this week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
apple-suite-mcp
One small Python file that gives Claude (or any MCP client) access to the built-in Apple apps on your Mac: Mail, Contacts, Calendar, Notes, and Reminders.
Because it talks to the Mail app rather than any one email service, it sees every account you've added to Mail — iCloud plus any number of Gmail, Google Workspace, and Exchange accounts side by side — with no OAuth setup and no extra logins.
Why this one
There are several Apple MCPs out there. This one optimizes for four things:
Multi-account by nature. Google-API MCPs authenticate one account per OAuth grant — five Google accounts means five connector setups and five token refreshes. This server gets every account at once (five Gmails, an iCloud, an Exchange — whatever Mail and Calendar are signed into), because your Mac already did the logging in.
Minimal. One readable
server.py, three dependencies, no Node, no app to install. If you want to know what it does, you can just read it.Fast where it matters. Calendar and Reminders use EventKit (Apple's native database API) instead of scripting the Calendar app — hundreds of times faster on real calendars. Mail listing and search read Mail's local SQLite index directly when Full Disk Access is granted (milliseconds even on giant mailboxes), and fall back to AppleScript automatically when it isn't.
Self-diagnosing. macOS permissions are the hard part of every Apple MCP.
python server.py check(or thecheck_accesstool) tells you exactly what's granted, what's missing, and which System Settings pane fixes it.
Related MCP server: mac-mcp
Setup
Easy mode — let your AI install it
If you use Claude Code (or any coding agent), paste this and let it drive:
Read https://github.com/travisthetrashpanda/apple-suite-mcp and install it for me: clone it, register it with my MCP client, then run its
checkcommand and walk me through fixing any macOS permissions it reports missing.
The agent handles cloning and registration, and check tells it exactly
which System Settings pane to point you at; you just click Allow when macOS
asks. (Sensible to read what you're installing first — it's one Python file.)
Manual mode
Requires macOS and uv (brew install uv).
git clone https://github.com/travisthetrashpanda/apple-suite-mcp.git ~/apple-suite-mcpClaude Code:
claude mcp add --scope user apple -- uv run --directory ~/apple-suite-mcp python server.pyClaude Desktop / any MCP client — add to your MCP config (e.g.
claude_desktop_config.json):
{
"mcpServers": {
"apple": {
"command": "uv",
"args": ["run", "--directory", "/Users/YOU/apple-suite-mcp", "python", "server.py"]
}
}
}Use the full path to uv (usually /opt/homebrew/bin/uv) if your client
doesn't inherit your shell's PATH.
Permissions (one-time)
Run the diagnosis and follow what it tells you:
cd ~/apple-suite-mcp && uv run python server.py checkAutomation (Mail, Contacts, Notes): macOS prompts on first use — click Allow.
Calendars & Reminders: set the host app (e.g. Claude) to Full Access in System Settings → Privacy & Security.
Full Disk Access (optional): enables the fast mail path. Without it, everything still works — large mailboxes are just slow (~30s per query). This is a broad grant; read the code and decide for yourself. Note that this one takes two grants — see below.
Gotcha: Full Disk Access needs two entries, not one. In System Settings → Privacy & Security → Full Disk Access, enable both your host app (e.g. "Claude") and "uv". macOS grants this permission per executable, and the server runs as a
uv-launched subprocess with its own permission identity — so granting the app alone isn't enough.Symptom of the missing grant:
mail_searchandmail_messagestime out whilecheckkeeps reportingfull_disk_access: "no access", no matter how many times you toggle the app or restart the machine. Switching on "uv" flips it to"ok — fast mail path active"immediately, with no relaunch needed.
Try it
what's unread across my inboxes?
search all my accounts for emails from the DMV
what's on my calendar this week?
remind me Thursday at 9am to renew the registration
find my note about the wifi setup
Scoping access (optional)
macOS permissions are per-app, not per-account — once the host app can
control Mail, it can see every account on the Mac. If you want tighter
control (say, a shared work/personal machine), copy config.example.json
to config.json and list what the server is allowed to see:
{
"mail_accounts": ["Personal"],
"calendars": ["Home", "Family"],
"reminder_lists": ["Reminders"],
"note_folders": ["Notes"],
"disabled_tools": ["mail_send"]
}Anything not listed is invisible to every tool — it can't be listed, read,
searched, or modified. Omit a key (or the whole file) to allow everything
of that kind. disabled_tools removes tools entirely (they're never even
registered with the MCP client). check_access reports the active scoping.
Tools
App | Tools |
| |
Contacts |
|
Calendar |
|
Notes |
|
Reminders |
|
— |
|
Test any tool from the command line without an MCP client:
uv run python server.py test mail_unread_counts
uv run python server.py test mail_messages '{"account": "Work", "limit": 5}'Safety notes
mail_trashuses Mail's normal reversible delete (messages go to the account's Trash). There is deliberately no permanent-delete tool.mail_sendsends real email through your accounts; MCP clients should confirm with the user before calling it.Everything runs locally — nothing is sent anywhere except by
mail_send.
Limitations
macOS only; the target apps must be configured (Mail needs at least one account).
The first Mail query right after Mail launches can time out while it syncs — retry after a minute.
Without Full Disk Access, very large mailboxes take ~30s per query and cross-account search (
mail_searchwith no account) is unavailable.Nested mail folders are addressed by their full path (e.g.
"[Gmail]/All Mail").
Credits
sweetrb/apple-mail-mcp — the project that proved the scripted-Mail approach and inspired this one.
krmj22/macos-mcp — the idea of reading Mail's Envelope Index directly instead of fighting slow AppleScript reads.
Say thanks
This project is free to use, no strings attached. If it's useful to you, a ⭐ on this repo or a shout-out to @travisthetrashpanda is always appreciated — and if you build something on top of it, a link back here helps others find it.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceMCP server for macOS Apple apps. Enables read/write access to Notes, Reminders, Calendar, Contacts, and Safari using SQLite and JXA, all running locally.Last updated28172MIT
- Alicense-qualityCmaintenanceA read-only MCP server that exposes data from native macOS apps (Mail, Notes, Calendar, Reminders, Contacts, Messages, Spotlight) to AI agents over stdio, currently in early development with no domain tools wired yet.Last updated133MIT
- Alicense-qualityAmaintenanceA collection of MCP servers for Apple macOS apps (Mail, Contacts, Notes, Memory, Messages, Calendar, Reminders) enabling AI assistants to read, search, create, and update data via JXA, SQLite, and EventKit.Last updated15MIT
- AlicenseAqualityBmaintenanceA read-only MCP server that lets Claude Desktop interact with Apple Mail on macOS via AppleScript. It enables listing mailboxes, searching emails, and reading email content without making network calls.Last updated3MIT
Related MCP Connectors
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
MCP connector for iMessage & Contacts via a local Mac agent + Vercel relay
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/travisthetrashpanda/apple-suite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server