The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Icloud MCP listing page.
A Model Context Protocol server that gives AI assistants read-only access to your iCloud mail and calendar over IMAP and CalDAV. Credentials live in your OS keyring (macOS Keychain by default) — never in a config file or the repo.
Defaults target iCloud, but every endpoint is overridable, so it works against any standard IMAP/CalDAV provider.
Read-only by default; writes are strictly opt-in. Mail, calendar, and contacts
can be listed, searched, and read with no ability to change anything: the IMAP
connection is opened read-only and bodies are fetched with BODY.PEEK[], so
messages are never even marked as read.
Mutating tools span mail (send_mail, reply_mail, forward_mail), calendar
(create_event, update_event, delete_event), and contacts (create_contact,
update_contact, delete_contact) — but all are disabled unless you set
ICLOUD_ENABLE_WRITES=1, and even then every write requires an interactive
confirmation (MCP elicitation) before it runs. See Writes (opt-in).
Mutations are gated two ways:
ICLOUD_ENABLE_WRITES=1 is set in the server's environment.iCloud issues a single app-specific password covering IMAP, SMTP, CalDAV, and CardDAV — there is no scoped "write-only" credential — so write-safety is structural: mail is sent over a separate, fresh SMTP connection (the read path's IMAP client has no send capability), and the opt-in flag + confirmation guard every mutation.
Or run it without installing — handy for MCP clients that launch the server on demand:
To install the latest unreleased code straight from GitHub:
Or for local development:
Requires Python 3.11+.
Generate an app-specific password for your Apple ID (never use your main password), then store it in your keyring:
On other platforms, the cross-platform keyring
library is used — keyring set icloud-mcp you@icloud.com also works anywhere.
The username comes from the ICLOUD_USERNAME environment variable. Resolution
order for the password:
ICLOUD_KEYRING_SERVICE, default icloud-mcp, + username)ICLOUD_APP_PASSWORD environment variable (fallback)To reuse an existing keyring entry (e.g. one named my-icloud), set
ICLOUD_KEYRING_SERVICE=my-icloud.
Set ICLOUD_USERNAME (required). All else is optional — see
.env.example for the full list of endpoint/timezone overrides.
The server speaks MCP over stdio: a client launches the icloud-mcp command
as a subprocess and talks to it over stdin/stdout. "Installing" it into a client
just means telling that client which command to run and which env vars to pass —
the password itself stays in the keyring, never in the client config.
If icloud-mcp isn't on your PATH (e.g. you installed into a virtualenv),
use the absolute path to the launcher, e.g. /path/to/repo/.venv/bin/icloud-mcp.
Then claude mcp list to confirm. Add -s user to make it available across all
projects rather than just the current one.
Add the server to Claude Desktop's config file. On macOS this is:
(On Windows: %APPDATA%\Claude\claude_desktop_config.json.)
The easiest way to open it is Settings → Developer → Edit Config. Add an
mcpServers key alongside whatever is already in the file — do not paste a
second top-level { ... } object, or the file becomes invalid JSON:
If the file already contains other keys, merge mcpServers in as a sibling
(remember the comma between keys):
Then fully quit Claude Desktop (⌘Q, not just closing the window) and reopen it. The server shows up as a Local MCP server and its tools become available.
Notes:
icloud-mcp
may read the keyring item; click Always Allow to avoid repeat prompts.mcpServers block.Tools (model-invoked):
| Tool | Description |
|---|---|
list_mail | List a folder (default INBOX), newest first, with optional since_date |
search_mail | Full-text search the inbox (or a named folder) |
list_folders | List the available IMAP mailbox folder names |
get_message | Fetch one message by UID, with full body |
list_events | Calendar events in a date window |
search_events | Events whose title matches text, in a window |
list_calendars | Names of all calendars |
list_contacts | List address-book contacts (name, emails, phones, org) |
search_contacts | Find contacts matching text across name, org, and emails |
send_mail ⚠️ | Send a plain-text email |
reply_mail ⚠️ | Reply to a message by UID (quotes original; reply_all optional) |
forward_mail ⚠️ | Forward a message by UID to a new recipient |
create_event ⚠️ | Create a calendar event |
update_event ⚠️ | Edit an event by UID (only the fields you pass) |
delete_event ⚠️ | Delete an event by UID |
create_contact ⚠️ | Create a new contact |
update_contact ⚠️ | Edit a contact by UID (merges into the existing vCard) |
delete_contact ⚠️ | Delete a contact by UID |
⚠️ Write tools require ICLOUD_ENABLE_WRITES=1 and confirm each action — see
Writes (opt-in).
Resources (passive context):
| URI | Description |
|---|---|
icloud://mail/inbox/recent | Most recent inbox messages |
icloud://calendar/today | Today + tomorrow's events |
Subject header is absent or
present-but-blank render as (no subject); a blank/absent From renders as
(unknown). (Some mail has an empty subject line rather than no subject line
at all — both are normalized.)text/plain part; for HTML-only mail, tags are
stripped (<style>/<script>/<head> content discarded) so you still get a
readable preview.Content-*/MIME-Version header block is stripped so those headers don't leak
into the snippet or body.since_date is date-granular and evaluated in the IMAP server's timezone
(UTC for iCloud), so a since_date of today can include late-yesterday messages
in your local time..env,
never committed.ICLOUD_ENABLE_WRITES=1 and an
interactive confirmation per action, and mail is sent over a separate SMTP
connection isolated from the read path.MIT — see LICENSE.
Not affiliated with, endorsed by, or sponsored by Apple Inc. iCloud is a trademark of Apple Inc.