apple-calendar-mcp
Enables reading and creating events in Apple Calendar on macOS, including listing calendars, searching events, creating new events, and finding free time slots.
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-calendar-mcpWhat's on my calendar for tomorrow?"
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-calendar-mcp
An MCP server that lets an AI assistant read and create events in Apple Calendar — and work out when you actually have time.
macOS only. It talks to EventKit, Apple's own calendar framework, which has no cross-platform equivalent.
claude mcp add apple-calendar -- npx -y @redpop/apple-calendar-mcpNo Xcode, no Swift toolchain, no repository clone. The signed helper binary ships inside the package.
What it does
Most calendar integrations answer what is on my calendar. This one also answers when am I free:
"Find me two hours for deep work this week, outside meetings"
"When could I fit a 30-minute call with someone in Berlin?"
"Book focus time Thursday morning"find_free_time returns the open gaps, not the busy blocks. It understands
that "work" means weekdays during working hours, that "personal" means any
day, and that all-day events usually shouldn't count as busy.
It can also keep a buffer around each meeting, because a gap wedged directly between two calls is free on paper and useless in practice.
Alongside that, the usual: list calendars, read events in a range with optional text search, create, update and delete events with location, notes, alarms, all-day or timed. Recurring events come back as individual occurrences, not as the master event — a detail AppleScript-based servers routinely get wrong.
Changing or deleting an occurrence of a recurring event requires saying explicitly whether you mean just that one or every later one too. There is no default for that, because "cancel this Tuesday" and "never again" are not the kind of thing to guess at.
Full parameter reference: docs/tools.md.
Related MCP server: Nextcloud CalDAV MCP Server
Requirements
macOS 14 (Sonoma) or newer
Node.js 20 or newer
Nothing else. Building from source additionally needs Xcode Command Line Tools, but installing from npm does not.
Setup
1. Add the server to your client.
claude mcp add apple-calendar -- npx -y @redpop/apple-calendar-mcpQuit Claude Desktop first (Cmd+Q) — it rewrites its config on exit, so
editing while it runs discards your change. Then add to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"apple-calendar": {
"command": "npx",
"args": ["-y", "@redpop/apple-calendar-mcp"]
}
}
}Any client that speaks MCP over stdio works. The command is npx, the
arguments are -y @redpop/apple-calendar-mcp, and no environment variables
are needed.
2. Grant calendar access on first use.
Ask your assistant "what calendars do I have?". A system dialog appears asking to let calendar-helper — not your assistant, the helper itself — access your calendar.
Confirm it, then open System Settings → Privacy & Security → Calendars → calendar-helper → Options… and make sure Full Access is selected, not "Add Only". Read-only access is not enough; the helper checks for full access at startup.
This one dialog is the only manual step, and no package format can take it away. It appears once and survives updates.
Why the dialog says "calendar-helper"
macOS grants calendar permission to the responsible parent process, not to the program actually asking. An AI client that declares no calendar usage in its bundle therefore locks out everything it starts — silently, with no dialog and no entry in System Settings. Several MCP calendar servers work around this by telling you to launch your client from a terminal.
This one doesn't need that. The helper disclaims that inherited responsibility at startup and becomes its own permission identity, so macOS reads the usage description from its bundle and prompts under its own name. One grant then covers every client on the machine.
The full story: docs/architecture.md.
Updating
npx -y @redpop/apple-calendar-mcp@latestYour calendar grant survives updates: the helper is installed to a fixed path, and macOS binds the grant to that path rather than to the binary's contents.
Uninstalling
Remove the apple-calendar entry from your client's MCP configuration and
restart it. Then delete the helper and its permission:
rm -rf ~/Library/Application\ Support/apple-calendar-mcpThe entry under System Settings → Privacy & Security → Calendars stays behind — macOS keeps those even when the binary is gone. Switch it off there if you want it revoked.
Building from source
git clone https://github.com/redpop/apple-calendar-mcp.git
cd apple-calendar-mcp
npm install && npm run build && ./swift/build.shThen point your client at dist/index.js with node instead of using npx.
Without a Developer ID certificate the helper is signed ad-hoc, and macOS
then ties the calendar grant to the exact build — expect a new permission
dialog after every rebuild.
Learn more
docs/architecture.md— how the two halves fit together and the whole TCC permission storydocs/tools.md— every tool parameter, defaults, and the all-day alarm ruledocs/cli.md— the standalonecalendar-helpercommand, useful for testing without an MCP clientdocs/troubleshooting.md— common errors and how to fix them
Privacy
Everything runs locally. Calendar data goes from EventKit to the helper to the MCP server to your client, and nowhere else. There is no network code in this project.
License
MIT — see LICENSE.
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
- Alicense-qualityCmaintenanceEnables Claude and other MCP clients to directly interact with macOS Calendar.app using AppleScript for local calendar management. Provides tools for listing, searching, creating, updating, and deleting calendar events without cloud APIs or CalDAV setup.Last updated324MIT
- Flicense-qualityDmaintenanceAn MCP server that lets Claude create calendar events and tasks in Nextcloud via CalDAV.Last updated
- Alicense-qualityBmaintenanceA local MCP server for CalDAV that gives Claude read access to your calendar, enabling planning, conflict checking, and schedule summaries.Last updatedMIT
- Alicense-qualityBmaintenanceA minimal Python MCP server that gives Claude access to built-in Apple apps (Mail, Contacts, Calendar, Notes, Reminders) on macOS, leveraging native APIs and local databases for speed with no OAuth setup.Last updatedMIT
Related MCP Connectors
Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
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/redpop/apple-calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server