icloud-reminders-mcp
This MCP server enables cross‑platform management of Apple Reminders via iCloud's CloudKit API, with all timestamps normalized to Beijing time.
Session: Check whether the saved iCloud session is trusted or needs 2FA.
Lists: List all reminder lists with their stable IDs.
Reminders: List active/completed reminders (configurable limit); get a single reminder by ID; create with optional title, due date, all‑day, flag, priority (0=none, 1=high, 5=medium, 9=low), notes, timezone, list, or parent ID; update any of those fields; mark completed or reopen; delete (requires
confirm=true).Subtasks: List immediate children; create new child tasks.
Recurrence: Read current rules; set daily/weekly/monthly/yearly with interval and occurrence limits; clear (requires
confirm=true).Tags: List, add idempotently, remove by ID or exact name.
Time & region: All due dates shown in Beijing time (UTC+8); supports mainland China iCloud endpoints.
Provides tools to manage Apple Reminders via iCloud, including listing reminder lists and reminders, reading, creating, updating, completing/reopening, and deleting reminders, with support for child tasks and timezone-aware due dates.
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-reminders-mcpShow me my reminders due today"
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.
iCloud Reminders MCP
English | 简体中文
icloud-reminders-mcp is a cross-platform Model Context Protocol (MCP) server
for Apple Reminders. It uses the maintained pyicloud package and iCloud's
CloudKit v2 reminders service, so Windows and Linux machines can manage reminders
without macOS, AppleScript, or browser automation.
This is an unofficial iCloud integration. Apple does not publish a stable Reminders API, so an iCloud service change can require a project update.
Capabilities
The server exposes sixteen MCP tools:
Tool | Capability |
| Check trusted-session and 2FA state |
| List reminder lists and stable IDs |
| List active or completed reminders |
| Read one reminder by ID |
| Create a reminder, optionally with a parent ID |
| List the immediate children of a parent reminder |
| Create a child task in its parent's list |
| Change title, notes, due date, priority, flag, or all-day state |
| Complete or reopen a reminder |
| Read recurrence rules |
| Create or update a daily, weekly, monthly, or yearly rule |
| Clear recurrence only when |
| List hashtags attached to a reminder |
| Add a hashtag idempotently |
| Remove a hashtag by ID or exact name |
| Delete only when |
Additional behavior:
Parent/child tasks with dedicated create and list tools
Daily, weekly, monthly, and yearly recurrence with interval and occurrence limits
Hashtag creation, lookup, and removal
Timezone-aware due dates and all-day reminders
Beijing time (
Asia/Shanghai, UTC+08:00) for all inputs and outputsApple priority values:
0none,1high,5medium,9lowExact list-name resolution with stable ID support
Mainland China iCloud endpoints
Persistent local authentication through pyicloud's keyring/session handling
Related MCP server: MCP Apple Reminders
Requirements
Python 3.10 or newer
An Apple ID with iCloud Reminders enabled
Interactive access for the initial Apple ID password and 2FA login
An MCP client that supports stdio servers, such as Codex
Never place an Apple password or 2FA code in source code, MCP configuration, an environment variable, or an issue. Authentication is performed interactively.
Windows installation
Open PowerShell:
git clone https://github.com/94youshin/icloud-reminders-mcp.git
cd icloud-reminders-mcp
py -3.12 -m venv .venv
.\.venv\Scripts\python.exe -m pip install --upgrade pip
.\.venv\Scripts\python.exe -m pip install .Authenticate interactively:
.\.venv\Scripts\icloud.exe auth login --username "your-apple-id@example.com"For an Apple account served from mainland China:
.\.venv\Scripts\icloud.exe auth login --username "your-apple-id@example.com" --china-mainlandLinux installation
Install Python's virtual-environment support if your distribution does not already provide it. On Debian or Ubuntu this is typically:
sudo apt-get install python3 python3-venvThen install the project:
git clone https://github.com/94youshin/icloud-reminders-mcp.git
cd icloud-reminders-mcp
python3 -m venv .venv
./.venv/bin/python -m pip install --upgrade pip
./.venv/bin/python -m pip install .Authenticate interactively:
./.venv/bin/icloud auth login --username "your-apple-id@example.com"Append --china-mainland when required. On a headless Linux host, run the MCP
server and the login command as the same OS user. A secure keyring backend is
recommended so pyicloud can renew an expired session without storing the Apple
password in configuration. Diagnose the active backend with:
./.venv/bin/python -m keyring diagnoseThe MCP server can still reuse an already authenticated saved session when no keyring backend is available. A new login or 2FA challenge always requires an interactive terminal. Do not expose the MCP server directly to the public internet.
Run the server
MCP clients normally start the stdio process automatically. It is not a standalone HTTP daemon and should not be registered as a public systemd network service. For a direct smoke test, run the following command; it waits for MCP messages on standard input.
Windows:
.\.venv\Scripts\python.exe -m icloud_reminders_mcpLinux:
./.venv/bin/python -m icloud_reminders_mcpConfigure Codex on Windows
Add the server to the Codex MCP configuration, using an absolute path:
[mcp_servers.apple-reminders]
command = "C:/path/to/icloud-reminders-mcp/.venv/Scripts/python.exe"
args = ["-m", "icloud_reminders_mcp"]
[mcp_servers.apple-reminders.env]
ICLOUD_USERNAME = "your-apple-id@example.com"
ICLOUD_CHINA_MAINLAND = "false"
ICLOUD_DEFAULT_REMINDER_LIST = "Reminders"Configure Codex on Linux
[mcp_servers.apple-reminders]
command = "/path/to/icloud-reminders-mcp/.venv/bin/python"
args = ["-m", "icloud_reminders_mcp"]
[mcp_servers.apple-reminders.env]
ICLOUD_USERNAME = "your-apple-id@example.com"
ICLOUD_CHINA_MAINLAND = "false"
ICLOUD_DEFAULT_REMINDER_LIST = "Reminders"Restart Codex after updating the configuration. The Apple ID username is not a secret, but the password and 2FA code must never be added here.
Environment variables
Variable | Required | Meaning |
| Yes | Apple ID username used by the saved session |
| No |
|
| No | Stable list ID or exact list title used when a tool omits |
If multiple lists exist and no default or list_id is supplied, the server
fails safely instead of choosing the wrong list.
Example requests
"List my Apple reminder lists."
"Create an all-day reminder on 31 August in the Work list."
"Create a parent task named Release v2, then add these rows as child tasks."
"Repeat this reminder every two weeks, for six occurrences."
"Add the tags #ReleaseV2 and #InterfaceDesign to this reminder."
"Mark reminder
REMINDER_IDcompleted.""Show reminder
REMINDER_ID, then ask before deleting it."
For due dates, MCP tools accept ISO 8601 and always normalize values to Beijing
time (Asia/Shanghai, UTC+08:00). A timestamp without an offset is interpreted
as Beijing time; a timestamp with another offset is converted to Beijing time.
For example, 2026-08-31T10:00:00Z becomes
2026-08-31T18:00:00+08:00. Returned timestamps also use +08:00.
Development and tests
Install development dependencies:
python -m pip install -e ".[dev]"
python -m pytestThe test suite covers list selection, ISO date handling, child-task creation, recurrence, hashtags, partial updates, completion, deletion confirmation, and a real stdio MCP initialize/list-tools exchange. Tests use fake iCloud services and do not change the developer's reminders.
Security and limitations
pyiclouduses private iCloud web APIs; compatibility is not guaranteed.Saved sessions and credentials remain local and must not be committed.
Deletion requires both user approval at the agent layer and
confirm=trueat the MCP tool layer.Sessions can expire or require fresh 2FA. Stop the MCP process, rerun
icloud auth login, and restart the MCP client.Use stable reminder and list IDs when possible; names can be duplicated.
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
- FlicenseCqualityDmaintenanceA Model Context Protocol server that enables AI assistants to interact with Apple Reminders on macOS, allowing users to view lists, retrieve, create, complete, and delete reminders through natural language.Last updated530
- Alicense-qualityBmaintenanceA macOS-only MCP server that exposes Apple Reminders to AI clients, enabling create, read, update, delete, search, and organization of reminders and lists through natural language.Last updatedMIT
- Alicense-qualityCmaintenanceMCP server enabling AI assistants to create, read, list, and delete Apple Reminders on macOS via AppleScript.Last updated11Apache 2.0
- Flicense-qualityDmaintenanceA Model Context Protocol server providing comprehensive integration with Apple Reminders, enabling CRUD operations, natural language date parsing, advanced search, and list management.Last updated
Related MCP Connectors
MCP connector for Apple Reminders — search, create, complete, and edit via your own Mac.
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
A MCP server built for developers enabling Git based project management with project and personal…
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/94youshin/icloud-reminders-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server