A TypeScript MCP server for iCloud Calendar with native multi-VALARM support.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
CalDAV MCP Server is a Model Context Protocol server for managing iCloud Calendar
events, including native support for multiple VALARM reminders on one event.
iCloud Calendar is the only provider officially supported and manually validated in the
first release. The server works with any MCP client that supports stdio or Streamable
HTTP.
This independent project is not affiliated with, authorized, sponsored, or approved by Apple Inc. Apple and iCloud are trademarks of their respective owner.
Install Node.js 24+, create an
Apple app-specific password, and add this
local stdio server to a JSON-configured MCP client such as Claude Desktop or Gemini:
Restart the client and confirm that it lists six calendar tools. See client-specific setup and Docker deployment below. Keep the configuration file private because it contains the app-specific password.
The server connects one configured account to iCloud through CalDAV. It discovers the account's calendars and exposes normalized read and write operations through MCP.
Updates preserve the complete iCalendar resource, including unknown properties, Apple
extensions, VTIMEZONE, recurrence exceptions, and alarms omitted from a patch. Writes
use opaque resource identifiers and ETags instead of assuming that a CalDAV filename
matches an event UID.
Calendar resources are processed in memory. The server has no telemetry and no application database, and raw iCalendar is returned only when explicitly requested.
stdio and Streamable HTTP MCP transports.list_calendarsLists the calendars discovered for the configured account. Each result includes an
opaque calendar_id, display name, description, timezone, and best-effort write status.
list_eventsLists events in a semi-open interval and expands recurring occurrences. The maximum range is 366 days, the default page size is 100, and the maximum page size is 500. Results use a deterministic chronological order. Pagination cursors are opaque and do not represent a snapshot when events are modified during traversal.
Example input:
get_eventReads an event by resource_id, or by a calendar_id and UID pair. Raw iCalendar is
excluded by default and can be requested with include_raw_ical: true for controlled
diagnostics.
create_eventCreates an event and reads back the representation stored by the server.
Timed event with two alarms:
All-day event with an exclusive end date:
Recurring events accept an RFC 5545 rule without the RRULE: prefix:
update_eventPatches an event or complete recurring series. Omitted fields are preserved, null
removes a nullable field, and alarms: [] removes all alarms. An optional
expected_etag prevents overwriting a newer server version.
delete_eventDeletes an event or complete recurring series, optionally requiring an observed ETag. Deleting a single expanded occurrence is not supported in the current release.
npx.package.json.No global install or repository clone is required. MCP clients can launch the latest published package directly:
The command waits for MCP messages on stdin and normally prints nothing to stdout. In
practice, add it to the client configuration as shown in MCP client setup.
For reproducible environments, replace latest with an exact published version such as
X.Y.Z.
The recommended installation uses the published multi-architecture image:
Download the Compose example:
Provide the Apple Account email and app-specific password, then start the service:
To publish a different host port, set:
The latest tag follows the newest stable release. Stable releases also publish an
exact tag such as 0.1.6 and a minor-series tag such as 0.1. The Compose example
pins latest by digest so deployments are reproducible. To upgrade, download the
updated Compose example or replace the full image reference with the desired
published version and digest.
The Streamable HTTP endpoint will be available at:
The host port can change without changing port 8100 inside the container. No
persistent volume is required; calendar data remains in iCloud.
The same hardened container configuration can be started directly:
Building locally is optional. Prefer the published image unless you need to modify or audit the container build.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/caldav-mcp-server)<a href="https://allmcps.com/mcp/caldav-mcp-server"><img src="https://allmcps.com/api/badge/caldav-mcp-server?style=directory" alt="CalDAV MCP Server on AllMCPs" /></a>