macos-mcp
A local MCP server for reading and managing macOS native apps (Mail, Calendar, Reminders, Notes, Messages, Contacts) directly from an MCP client, with no cloud credentials or network calls.
π§ Mail: List accounts, mailboxes, messages; search messages (by subject/sender, filter unread); get full content; save attachments; draft emails and replies (never sends) with CC/BCC, signatures; archive, trash, mark read/unread, move messages.
π Calendar: List calendars, events (date range); search events; get details; create, update, delete events (supports attendees, alarms, location, notes).
β Reminders: List lists, reminders (filter completed/due); search reminders; create reminders (with due date, notes, priority); mark complete; delete.
π Notes: List folders, notes; search notes; get note body; create notes; append text to existing notes.
π¬ Messages: Read iMessage/SMS threads by phone/email; list recent chats. Requires Full Disk Access.
π€ Contacts: List contacts (optionally filter missing email); search; get full card; create, update, delete; import Google Contacts CSV (upsert by email, deduplication).
Key Features & Limitations:
Operates locally on macOS only (no Windows/Linux).
Mail is draft-only; emails are never sent automatically.
Uses AppleScript/JXA (EventKit for Calendar reads).
Requires macOS Privacy & Security permissions (Calendars, Automation, Full Disk Access for Messages).
No cloud integrations (Gmail API, OAuth, etc.).
Provides tools to interact with macOS native apps: Mail, Calendar, Reminders, Notes, Messages, and Contacts, allowing AI agents to read, search, create, update, and delete data in these apps via AppleScript/JXA.
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., "@macos-mcpShow my upcoming events for today"
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.
macos-mcp
Local MCP server for macOS native apps: Mail, Calendar, Reminders, Notes, Messages, and Contacts. One stdio process, zero npm dependencies, Node 20+.
Windows and Linux are not supported. Calendar reads use EventKit (bin/eventkit-cal); Calendar writes and other modules use AppleScript/JXA. No Gmail API, no OAuth, no cloud credentials.
What it is
One MCP server = one mental model: read and organize your Mac life.
Module | App | Prefix |
Mail.app |
| |
Calendar | Calendar.app |
|
Reminders | Reminders.app |
|
Notes | Notes.app |
|
Messages | Messages.app ( |
|
Contacts | Contacts.app |
|
Email is draft-only. mail_draft_email opens a visible draft in Mail.app; it never sends. You review and send manually.
Related MCP server: apple-mcp
Requirements
macOS with Mail, Calendar, Reminders, Notes, Messages configured
Node.js β₯ 20
Cursor (or any MCP client that supports stdio)
Install
git clone <your-repo-url> macos-mcp
cd macos-mcp
bash scripts/build-eventkit-cal.sh # required for fast calendar reads
node scripts/install-mcp.jsRestart Cursor. The installer registers macos-local in ~/.cursor/mcp.json (backs up existing config to .bak).
Manual registration:
{
"mcpServers": {
"macos-local": {
"command": "node",
"args": ["/absolute/path/to/macos-mcp/bin/macos-mcp.js"]
}
}
}Signatures (mail drafts)
bash scripts/install-mail-signatures.shEdit signatures/manifest.json and signatures/*.txt locally. Real signatures are gitignored.
macOS permissions
Grant in System Settings β Privacy & Security:
Permission | Needed for |
Calendars β Full access for Cursor (MCP) and/or Terminal (CLI smoke tests); the helper may also appear as |
|
Automation β allow Cursor to control Mail, Calendar, Reminders, Notes, Contacts | JXA/AppleScript modules (calendar create/update/delete, Mail, etc.) |
Full Disk Access β Cursor (or Terminal during testing) | Messages module ( |
On first calendar read, macOS may prompt for Calendar access. If the helper exits with βCalendar Full Access requiredβ:
Open System Settings β Privacy & Security β Calendars
Find Cursor (MCP) and/or Terminal (CLI smoke tests)
Enable Full Access (not Write Only / Add Only)
Re-run
npm run smoke:calendaror restart the MCP server
Cursorβs Calendar TCC was previously Write Only on this machine; Full Access is required for EventKit reads. Calendar create/update/delete still use Automation (AppleScript) and do not need EventKit Full Access.
Tool index
Mail (mail_*)
Tool | Description |
| List Mail accounts |
| List mailboxes (optional account filter) |
| List messages in mailbox |
| Search subject/sender |
| Full message by id |
| Save message attachments to a local directory |
| Open new compose draft (never sends) |
| Open reply draft in thread (never sends) |
| Move to All Mail |
| Move to Trash |
| Mark read/unread |
| Move to mailbox |
Calendar (calendar_*)
Tool | Description |
| List calendars |
| Events in date range |
| Search title/location |
| Full event |
| Create event (optional |
| Update event |
| Delete event |
Reminders (reminders_*)
Tool | Description |
| List reminder lists |
| List reminders in a list |
| Search name/notes |
| Create reminder |
| Mark complete |
| Delete reminder |
Notes (notes_*)
Tool | Description |
| List folders |
| List notes |
| Search title/body |
| Get note body |
| Create note |
| Append to note |
On newer macOS, note body extraction may fail; notes_get returns body_unavailable: true when scripting is restricted.
Calendar list/search use EventKit (typically under a second for a week range). Create/update/delete still use Calendar.app scripting. Build the helper with npm run build:eventkit if bin/eventkit-cal is missing.
Messages (messages_*)
Tool | Description |
| Thread by phone/email substring |
| Recent chats |
Requires Full Disk Access. Reads iMessage/SMS locally; no network.
Contacts (contacts_*)
Tool | Description |
| List contacts (optional: missing email only) |
| Search by name/email/phone |
| Full contact card |
| Create contact |
| Update contact |
| Delete contact |
| Import Google Contacts CSV (upsert by email) |
Architecture
bin/macos-mcp.js β entrypoint
bin/eventkit-cal β EventKit CLI (built; not committed)
native/EventKitCal/ β Swift source + Info.plist
src/mcp/server.js β JSON-RPC MCP (protocol 2024-11-05)
src/mcp/transport.js β stdio NDJSON
src/mcp/tools.js β aggregates all module tools
src/runtime/eventkit.js β spawns eventkit-cal for calendar reads
src/runtime/jxa.js β generic JXA runner (Application per app)
src/runtime/applescript.js β AppleScript runner + draft email
src/mail/ β Mail module
src/calendar/ β Calendar module (reads β EventKit; writes β AS/JXA)
...EventKit vs JXA vs AppleScript
EventKit (
bin/eventkit-cal):calendar_list_calendars,calendar_list_events,calendar_search_events.JXA (
osascript -l JavaScript): read/list/search most other app data; calendar alarm attach after create; genericrunJxa(appName, body, args).AppleScript:
mail_draft_email, calendar create/update/delete/get, and contacts create/update (JXAmakeis unreliable on modern Calendar.app and Contacts.app).
Response shapes: lists include count; domain keys vary (items, events, reminders, notes, chats, contacts). Errors throw and return MCP isError: true.
Mail.app quirks
Saved drafts may retain a leading newline Mail adds on save; the compose window is usually correct.
AppleScript does not auto-attach Mail.app signature prefs; this server appends from
signatures/files instead.
What it is NOT
No Gmail API, Microsoft Graph, or OAuth
No auto-send email
No npm publish (
private: true)No telemetry or network calls in server code
Development
npm run build:eventkit # compile bin/eventkit-cal
npm run smoke:calendar # time calendars + week event list (default 2026-07-27β2026-08-03)
npm start # stdio server (stderr: [macos-mcp] ready; N tools; macOS only)Test a tool via MCP client or send JSON-RPC to stdin.
License
MIT
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
- Alicense-qualityAmaintenanceMCP server for Apple Calendar, Mail, Reminders, and Files on macOS using native frameworks.3116MIT
- AlicenseBqualityFmaintenanceMCP server for macOS Apple apps. Enables read/write access to Notes, Reminders, Calendar, Contacts, and Safari using SQLite and JXA, all running locally.28102MIT
- Alicense-qualityBmaintenanceA 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.74MIT
- 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.12MIT
Related MCP Connectors
MCP connector for iMessage & Contacts via a local Mac agent + Vercel relay
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP 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/theHaruspex/macos-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server