Calendar MCP
Allows reading and writing events in a single iCloud calendar, including all-day events, recurrence rules, and reminders.
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., "@Calendar MCPCreate a dentist appointment for next Monday at 9am"
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.
Calendar MCP (one calendar, nothing else)
Remote MCP server that can read and write exactly one iCloud calendar collection. Meant for a calendar named "Claude" that you create for this purpose in Apple Calendar.
The restriction sits in the code, not in a permission dialog:
ScopedCalendar is given a fixed calendar URL and never calls
principal() or calendars(). There is no tool that could list or
address any other calendar of the account. The app-specific password for
the Apple ID technically covers the whole account, but nothing in the
server makes use of that.
Tools
Tool | Purpose |
| Events in a range, recurrences expanded |
| A single event |
| Create, incl. all-day, RRULE, reminder |
| Partial update, unset fields stay unchanged |
| Delete |
Times without a timezone count as local time from TIMEZONE.
Related MCP server: icloud-mcp
Setup
1. Calendar and Apple app password
Create a new iCloud calendar in Apple Calendar, e.g. "Claude".
On appleid.apple.com, under "Sign-In and Security", generate an app-specific password.
2. Find the calendar URL
Locally, once:
pip install caldav
CALDAV_USERNAME=your@apple-id.tld \
CALDAV_APP_PASSWORD=xxxx-xxxx-xxxx-xxxx \
python discover_calendar.pyThe URL from the "Claude" line goes into the .env as
CALDAV_CALENDAR_URL. discover_calendar.py is deliberately not copied
into the image.
3. GitHub OAuth app
Claude signs in to the server via OAuth. GitHub only serves as proof of identity here, so that not everyone who knows the URL can write.
Under GitHub → Settings → Developer settings → OAuth Apps, create an app:
Homepage URL:
https://calendar-mcp.your-domain.tldAuthorization callback URL:
https://calendar-mcp.your-domain.tld/auth/callback
Client ID and secret go into the .env. Set ALLOWED_GITHUB_LOGINS to
your own login: without that list, any GitHub account that knows the
server URL could sign in. That is why the server refuses to start when it
is empty.
4. Deployment on Coolify
New resource → Dockerfile-based, connect the repo.
Port:
8000Set a domain, let Coolify handle TLS
PUBLIC_BASE_URLhas to match the public domain exactly (without/mcp), otherwise OAuth discovery failsEnter every value from
.env.exampleas an environment variable, mark secrets as such
The endpoint then lives at https://<domain>/mcp.
Test locally:
pip install -r requirements.txt
AUTH_MODE=none python server.py5. Add it in Claude
Settings → Connectors → Add custom connector, URL
https://calendar-mcp.your-domain.tld/mcp. Client ID and secret stay
empty, dynamic client registration does the rest. The GitHub login
follows, and the connector is then available in all Claude interfaces,
mobile included.
When something does not connect
Claude waits at most 10 seconds for the OAuth endpoints. A container starting cold runs into that timeout, so warm it up once.
A
PUBLIC_BASE_URLwith a diverging host or path is the most common cause of a failing discovery.Anthropic's outbound requests come from
160.79.104.0/21. If you put a firewall in front of it anyway, you can narrow it down to that.
What the server cannot do
No other calendars, not even on request.
No attendees, no invitations, no free/busy.
Nothing runs by itself. The server only acts when Claude calls it in a conversation or in a scheduled task.
One note on security: titles and descriptions of events end up as text in the model context. As long as the calendar stays unshared and receives no outside invitations, you are the only one writing into it.
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
- Flicense-qualityDmaintenanceEnables users to view and create events in their iCloud Calendar using natural language through supported LLMs. It integrates with Apple's infrastructure via app-specific passwords to provide secure calendar management.1
- Alicense-qualityBmaintenanceEnables calendar management with iCloud through CalDAV, allowing users to list, create, update, and delete events via a standardized API.41MIT
- AlicenseAqualityDmaintenanceExposes Apple Calendar data through an EventKit helper app. Enables reading, creating, updating, and deleting calendar events on macOS.732MIT
- Flicense-qualityBmaintenanceEnables interacting with CalDAV calendars (like iCloud) through natural language, supporting reading and writing events.
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay
Manage your family's calendars and lists in Cozi. View, create, and update appointments; organize…
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/moOritzl/calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server