Skip to main content
Glama

Cancel reminder

cancel_reminder
Idempotent

Cancel a previously scheduled reminder by its reminder_id. Fire-and-forget: the server does not store reminders, so it cannot confirm the id was real — an unknown or already-fired reminder is silently ignored rather than reported as an error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reminder_idYesThe reminder_id returned by remind_me.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations by explaining that the server does not store reminders, the call is fire-and-forget, and unknown or already-fired reminders are silently ignored. This concretely explains the idempotentHint and openWorldHint annotations and defines error behavior.

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 tight sentences. The primary action is front-loaded and the essential caveat follows in the second sentence without any filler.

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?

For a single-parameter tool with a documented parameter and an output schema, the description covers what the tool does, how cancellation behaves, and what to expect with invalid ids. Nothing essential is missing for correct invocation.

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 schema already documents reminder_id as the id returned by remind_me, so the baseline is 3. The description adds meaningful parameter behavior: an invalid or already-fired reminder_id is silently tolerated, which helps agents predict outcomes and avoid over-thinking errors.

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?

States a specific action (Cancel) against a specific resource (previously scheduled reminder) identified by reminder_id. This clearly differentiates it from sibling remind_me, which schedules reminders.

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?

Clear context: use this to cancel a reminder that was created earlier. It does not name alternative tools or explicit when-not conditions, but the fire-and-forget caveat tells agents that invalid or expired ids will not produce errors, which meaningfully shapes when this tool is appropriate.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose: reminders (remind_me/cancel_reminder), approvals (request_approval/check_reply), notifications (send_notification), files (send_file), device info (list_devices), shared items (get_shared_items), and phone locating (find_my_phone). No two tools overlap in action or resource.

Naming Consistency5/5

All nine tools follow a consistent snake_case verb_noun pattern, e.g., cancel_reminder, send_notification, list_devices. There are no deviations or mixed conventions.

Tool Count5/5

Nine tools is well-scoped for a phone-communication server. Each tool addresses a distinct functional need without redundancy or bloat, making the set feel purposeful and easy to navigate.

Completeness5/5

The surface covers the essential lifecycle for its domain: scheduling and canceling reminders, requesting and polling approvals, sending notifications and files, reading user-shared items, listing devices, and locating the phone. No obvious gaps or dead ends exist.

Resources