icloud-calendar-mcp-server
Provides tools for listing calendars, and creating, updating, and deleting events on iCloud Calendar via CalDAV.
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., "@icloud-calendar-mcp-serverlist my events 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.
@instacodeio/icloud-calendar-mcp-server
MCP server for iCloud Calendar via CalDAV. Lets Claude (or any MCP client) read and write events on your iCloud calendars.
Published under InstaCode.
What it does
Exposes five tools:
Tool | Purpose |
| List your iCloud calendars |
| Fetch events from a calendar in a date range |
| Create a new event |
| Update an existing event by UID |
| Delete an event by UID |
Related MCP server: icloud-calendar-mcp
Prerequisites
Node.js 18+
An Apple ID with two-factor authentication enabled
An app-specific password generated at https://appleid.apple.com (your normal Apple ID password will not work for CalDAV)
Setup
npm install
npm run buildSet credentials via environment variables (or copy .env.example to .env and load via your runner):
export ICLOUD_USERNAME="you@icloud.com"
export ICLOUD_APP_PASSWORD="xxxx-xxxx-xxxx-xxxx"Test it locally
Use the MCP Inspector to poke at the tools without wiring up a client:
npm run inspectThen in the inspector UI: list tools, call icloud_list_calendars, etc.
Use with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"icloud-calendar": {
"command": "node",
"args": ["/absolute/path/to/icloud-calendar-mcp-server/dist/index.js"],
"env": {
"ICLOUD_USERNAME": "you@icloud.com",
"ICLOUD_APP_PASSWORD": "xxxx-xxxx-xxxx-xxxx"
}
}
}
}Restart Claude Desktop. The tools should appear under the MCP icon.
Known limitations (v0.1)
Time zones: events are written in UTC. Timezone-aware writes are TODO.
Recurring events: parsed as their master event; recurrence overrides aren't surfaced separately yet.
Reminders/alarms: not yet supported on create/update.
Attendees / invites: not yet supported.
Update/delete by UID does a calendar scan; for very large calendars this is slow. Future improvement: maintain a UID→URL index or use server-side query reports.
Roadmap
Timezone support on create/update
VALARM (reminders) on create/update
icloud_search_eventswith text query (across calendars)icloud_find_free_timehelperCardDAV companion for contacts (
https://contacts.icloud.com)Optional Streamable HTTP transport for hosted use
Publishing
Releases are published to npm via OIDC trusted publishing — no NPM_TOKEN required in CI.
First publish (one-time, manual):
The npm trusted-publisher settings page only appears for packages that already exist on npmjs.com. So v0.1.0 must be published manually from a local machine:
npm login
npm publish --access public
--provenanceis intentionally omitted here. Provenance attestations require a supported OIDC provider (GitHub Actions, GitLab CI, etc.) and will fail locally withAutomatic provenance generation not supported for provider: null. The CI workflow below adds--provenanceautomatically.
After the first publish:
Go to https://www.npmjs.com/package/@instacodeio/icloud-calendar-mcp-server → Settings → Trusted Publishers
Add a publisher with:
Repository owner:
InstaCode(or your GitHub username)Repository name:
icloud-calendar-mcp-serverWorkflow filename:
publish.yml
Subsequent releases (automated):
npm version patch # or minor / major
git push --follow-tagsThe Publish to npm workflow will run on the new v* tag, verify the tag matches package.json, build, and publish with provenance.
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.
Latest Blog Posts
- 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/InstaCode/icloud-calendar-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server