icloud-reminders-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ICLOUD_USERNAME | Yes | Apple ID username used by the saved session | |
| ICLOUD_CHINA_MAINLAND | No | true to use mainland China endpoints; defaults to false | false |
| ICLOUD_DEFAULT_REMINDER_LIST | No | Stable list ID or exact list title used when a tool omits list_id |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_session_statusA | Check whether the saved iCloud session is trusted or needs 2FA. |
| list_reminder_listsA | List Apple Reminder lists and their stable IDs. |
| list_remindersB | List reminders; all returned timestamps use Beijing time (+08:00). |
| get_reminderA | Get one reminder by ID with timestamps in Beijing time (+08:00). |
| create_reminderB | Create a reminder or child task using Beijing time (Asia/Shanghai). |
| update_reminderC | Update supplied fields; due values are normalized to Beijing time. |
| set_reminder_completedC | Complete or reopen a reminder using Beijing time for completion. |
| delete_reminderA | Delete a reminder. The caller must pass confirm=true after user approval. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct operation: session status, list retrieval, reminder CRUD, and completion state. No two tools overlap in purpose, so an agent can select the correct tool unambiguously.
All tool names follow a consistent verb_noun snake_case pattern (e.g., create_reminder, list_reminders, delete_reminder). This predictable style makes the set easy to navigate.
Eight tools is well-scoped for an iCloud Reminders server, covering essential actions without redundancy. Each tool earns its place, and the count is within the ideal range.
The set supports full CRUD, completion toggling, list enumeration, and session verification—covering all core reminder workflows. No obvious operations are missing for the domain.