Skip to main content
Glama

Complete Reminders

complete_reminders
Idempotent

Mark one or more Apple Reminders as complete by passing index numbers or ID prefixes when a user finishes a task or wants to check off a reminder.

Instructions

Mark one or more Apple Reminders as complete. Use when the user says they finished a task, did something, or wants to check off a reminder.

Args:

  • ids (string[], required): Array of index numbers or ID prefixes from show_reminders output

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYesIndexes or ID prefixes to mark complete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior2/5

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

Annotations already provide readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description adds no further behavioral context such as whether completion is reversible, what happens with invalid IDs, or any authentication requirements. It mostly restates the core action.

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 front-loaded with the purpose, followed by usage guidance and a compact Args section. Every sentence earns its place with no wasted text.

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?

For a simple mutation tool with rich annotations and a fully described input schema, the description covers what it does, when to use it, and where IDs come from. It does not explain return values, but no output schema exists and the omission is minor.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value by stating that the IDs are 'from show_reminders output,' which tells the agent where to obtain valid values and is not present in the schema.

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 verb and resource: 'Mark one or more Apple Reminders as complete.' It is clear what the tool does, but it does not explicitly differentiate itself from siblings like edit_reminder or delete_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?

It gives clear usage conditions: 'Use when the user says they finished a task, did something, or wants to check off a reminder.' It lacks explicit when-not-to-use guidance or named alternatives, but the context is strong.

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