Skip to main content
Glama
94youshin
by 94youshin

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_session_status

Check trusted-session and 2FA state

list_reminder_lists

List reminder lists and stable IDs

list_reminders

List active or completed reminders

get_reminder

Read one reminder by ID

create_reminder

Create a reminder, optionally with a parent ID

list_subtasks

List the immediate children of a parent reminder

create_subtask

Create a child task in its parent's list

update_reminder

Change title, notes, due date, priority, flag, or all-day state

set_reminder_completed

Complete or reopen a reminder

get_reminder_recurrence

Read recurrence rules

set_reminder_recurrence

Create or update a daily, weekly, monthly, or yearly rule

clear_reminder_recurrence

Clear recurrence only when confirm=true is supplied

list_reminder_tags

List hashtags attached to a reminder

add_reminder_tag

Add a hashtag idempotently

remove_reminder_tag

Remove a hashtag by ID or exact name

delete_reminder

Delete only when confirm=true is supplied

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 outputs

  • Apple priority values: 0 none, 1 high, 5 medium, 9 low

  • Exact 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-mainland

Linux 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-venv

Then 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 diagnose

The 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_mcp

Linux:

./.venv/bin/python -m icloud_reminders_mcp

Configure 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

ICLOUD_USERNAME

Yes

Apple ID username used by the saved session

ICLOUD_CHINA_MAINLAND

No

true to use mainland China endpoints; defaults to false

ICLOUD_DEFAULT_REMINDER_LIST

No

Stable list ID or exact list title used when a tool omits list_id

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_ID completed."

  • "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 pytest

The 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

  • pyicloud uses 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=true at 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.

Available Tools

8 tools
check_session_statusA

Check whether the saved iCloud session is trusted or needs 2FA.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It clearly indicates the tool is a read-only status check without side effects, and specifies the binary outcome. It does not discuss failure modes or details of what 'trusted' means, but it is sufficient for a status-check tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, concise sentence that is front-loaded with the action and clearly states the outcome. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (no parameters), has an output schema to describe return values, and the description covers the essential purpose and result. The context is complete for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. The description adds no parameter-specific detail, but none is needed since the input schema is empty.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'check' with a clear resource ('saved iCloud session') and states the outcome ('trusted or needs 2FA'). It fully distinguishes this tool from the sibling reminder tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The usage context is implied: use when you need to determine whether the iCloud session is trusted or requires 2FA. However, there is no explicit when-not-to-use or mention of alternatives, though none exist among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_reminderB

Create a reminder or child task using Beijing time (Asia/Shanghai).

ParametersJSON Schema
NameRequiredDescriptionDefault
dueNo
titleYes
all_dayNo
flaggedNo
list_idNo
priorityNo
descriptionNo
time_zone_nameNoAsia/Shanghai
parent_reminder_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only mentions that the tool uses Beijing time, which is already a schema default, and does not describe side effects, prerequisites, authentication, or behavior when creating child tasks.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence with no filler. It front-loads the action ('Create') and conveys the most distinctive contextual detail (Beijing time) efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 9 parameters, no annotations, and an output schema that does not cover input semantics, this description is severely inadequate. It leaves users without essential guidance on parameter usage, relationships, or operational constraints, making it nearly impossible to invoke the tool correctly without external knowledge.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% for 9 parameters. The description hints at time_zone_name via 'Beijing time' and parent_reminder_id via 'child task', but fails to explain the required 'title' or any other parameters like due, all_day, flagged, list_id, priority, and description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's action (create) and resource (reminder or child task), and adds the key detail of Beijing time. It distinguishes itself from sibling tools like update_reminder and delete_reminder by focusing solely on creation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The verb 'create' implies when to use the tool, but the description offers no explicit guidance on when to use it versus alternatives such as update_reminder or set_reminder_completed. It mentions no exclusions or specific scenarios beyond the basic action.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_reminderA

Delete a reminder. The caller must pass confirm=true after user approval.

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmNo
reminder_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses an important behavioral safeguard (the confirm=true requirement), but with no annotations, it does not cover other behavioral aspects such as irreversibility, side effects, or error conditions. The deletion itself is implied by the tool name, but the description adds limited transparency beyond the confirmation gate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences: first states the purpose, second adds the essential confirmation instruction. No redundant words, perfectly front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple delete tool, the description covers the core action and the key prerequisite, and the output schema exists for return values. However, it lacks any mention of irreversibility, permissions, or failure scenarios, which are relevant for a destructive operation. It is minimally adequate but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates by explaining the confirm parameter ('pass confirm=true'), which is critical. However, reminder_id is not elaborated beyond its name, and no format or source is specified. The added meaning for confirm is valuable but incomplete overall.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Delete a reminder' clearly states the action (delete) and the resource (reminder), distinguishing it from sibling tools like update_reminder or list_reminders. It is concise and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage context: 'caller must pass confirm=true after user approval.' This is a clear prerequisite. However, it doesn't enumerate alternatives or situations when to avoid using this tool, though the match with siblings is obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_reminderA

Get one reminder by ID with timestamps in Beijing time (+08:00).

ParametersJSON Schema
NameRequiredDescriptionDefault
reminder_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds value by noting that timestamps are returned in Beijing time (+08:00), which is a meaningful detail. However, it does not disclose error behavior (e.g., what happens if the ID is not found) or any other response nuances. The timezone mention is positive but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that states the core purpose immediately ('Get one reminder by ID') and adds a valuable detail about timezone formatting. Every word earns its place with no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (one parameter), and an output schema exists, so the description doesn't need to explain return values. It covers the essential purpose and adds the timezone detail, which is helpful. It omits error handling, but for a basic get-by-ID operation, the description is reasonably complete given the presence of an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero description coverage for parameters, and the description adds little beyond the parameter name. 'by ID' merely restates what 'reminder_id' already implies. No format, constraints, or examples are provided, so the description fails to compensate for the lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Get one reminder by ID'. It specifies the resource (reminder), the verb (get), and the scope (one, by ID), distinguishing it from siblings like list_reminders or create_reminder. The addition of 'timestamps in Beijing time' provides a specific detail that further clarifies the tool's output behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a single reminder is needed by ID, but it does not explicitly contrast this with alternatives like list_reminders or provide exclusion criteria. There is no 'when to use' or 'when not to use' guidance, leaving the agent to infer the appropriate context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_reminder_listsA

List Apple Reminder lists and their stable IDs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool lists lists and their stable IDs, which implies a read-only operation, but it does not explicitly mention access requirements or side-effect profile. The mention of stable IDs adds useful context about the return data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that directly states the purpose with no unnecessary words. It is front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, output schema exists), the description is largely complete. It covers the core functionality without needing to explain return values. The only minor gap is explicit usage differentiation from sibling list_reminders, which is not critical.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there are no parameter semantics to explain. The baseline of 4 applies since the description need not compensate for parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and resource ('Apple Reminder lists') and adds the stable IDs detail, clearly distinguishing it from siblings like list_reminders. This is a precise, unambiguous statement of the tool's function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: the tool is for listing reminder lists and their IDs, implying when to use it. However, it does not explicitly mention alternatives or exclusions, such as distinguishing from list_reminders for individual reminders. The context is sufficient for a simple tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_remindersB

List reminders; all returned timestamps use Beijing time (+08:00).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
list_idNo
include_completedNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The timezone disclosure (+08:00) is a useful behavioral detail not inferable from the name or schema. However, with no annotations and no mention of pagination, default completion filtering, or other behavioral traits, significant aspects remain undisclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no filler. The timezone note is compact and relevant, making it appropriately sized and structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is relatively simple and an output schema exists, so return values are covered. However, the description omits guidance on optional parameters and default behavior, which creates notable gaps for a list operation with no annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description does not address any of the three parameters (limit, list_id, include_completed), and schema description coverage is 0%. The schema provides only names and defaults, so the agent must infer semantics, making the parameter meaning insufficiently clarified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The phrase 'List reminders' clearly identifies a read operation targeting reminder resources, and the plural form distinguishes it from get_reminder. However, it does not explicitly differentiate from sibling tools like list_reminder_lists, so it stops short of a top score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus alternatives, nor does it mention the optional filtering parameters or default behavior. No exclusions or alternative tool references are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_reminder_completedC

Complete or reopen a reminder using Beijing time for completion.

ParametersJSON Schema
NameRequiredDescriptionDefault
completedNo
reminder_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden. It mentions 'using Beijing time for completion' but doesn't explain how that affects behavior (e.g., whether it sets a completion timestamp, how timezone conversion works, or side effects of reopening). The toggling nature is implied but not fully disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that gets to the point quickly. It is appropriately sized, though it sacrifices some detail for brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple two-parameter schema and the presence of an output schema, the description is minimally adequate. However, the timezone nuance is under-specified, and for a reversible action (complete/reopen) there is no mention of prerequisites or consequences, leaving gaps for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It hints at the 'completed' boolean via 'Complete or reopen' but does not explicitly map parameters or explain their formats. The schema provides types and defaults, but the description adds minimal value beyond a vague behavioral hint.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Complete or reopen a reminder') and the resource, and mentions 'Beijing time for completion' which adds a distinguishing detail. However, it doesn't explicitly name alternative tools like 'update_reminder' for differentiation, though the phrasing is clear enough.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus siblings like 'update_reminder' which could also modify reminders. There are no explicit when/when-not instructions or alternative references.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_reminderC

Update supplied fields; due values are normalized to Beijing time.

ParametersJSON Schema
NameRequiredDescriptionDefault
dueNo
titleNo
all_dayNo
flaggedNo
priorityNo
clear_dueNo
descriptionNo
reminder_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses only one behavioral trait: due values are normalized to Beijing time. It does not mention whether unspecified fields remain unchanged, whether the update is partial versus full, what the response contains, or any error/authentication requirements. This is a significant gap for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence that immediately states the tool's purpose. It is concise and free of filler, earning its place. However, it may be too sparse given the tool's complexity, which prevents a perfect score.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema that could explain return values, the description is incomplete for an 8-parameter update tool. It lacks guidance on which parameters are optional, whether the update is partial (though 'supplied fields' implies this), how clear_due interacts with due, and any usage caveats. The timezone note is a useful addition but does not make the description sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate by explaining parameter meaning. It fails to do so; the only parameter-related note is about 'due' normalization, which is a behavior rather than a full explanation of the parameter's format or constraints. Most parameters (e.g., priority, clear_due, flagged) are left entirely to their schema types and titles.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The verb 'Update' plus the resource 'supplied fields' clearly indicates a partial update of an existing reminder. It is distinguishable from sibling tools like create_reminder, delete_reminder, and set_reminder_completed, though it does not explicitly state which fields are supported (that is left to the schema).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance is given about when to use this tool versus alternatives. The description does not mention prerequisites, typical scenarios, or any exclusions (e.g., 'use create_reminder for new reminders'). The context of sibling names implies its role but does not provide direct guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv0.2.0
    • First observedcheck_session_status
    • First observedcreate_reminder
    • First observeddelete_reminder
    • First observedget_reminder
    • First observedlist_reminder_lists
    • First observedlist_reminders
    • First observedset_reminder_completed
    • First observedupdate_reminder

TDQS

A3.7/5.0

Scored across 8 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers