Delete a reminder
destroy_remindersDelete a reminder from a task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| kwargs | Yes |
destroy_remindersDelete a reminder from a task.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| kwargs | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and idempotentHint=true, covering the safety profile. The description adds the 'from a task' relationship, which is useful context, but it does not disclose consequences like permanence or error handling for nonexistent reminders.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with no filler or redundancy. It is front-loaded with the action and resource, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete tool with annotations and a detailed schema, the description is adequate but minimal. It lacks any usage context, behavioral details beyond the core action, or guidance on edge cases. However, it is sufficient for basic invocation when combined with the schema and annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description itself mentions no parameters, but the input schema provides descriptions for both task_id ('ID of the task the reminder belongs to') and pk ('The id of the reminder'). Thus the schema carries the semantic burden, and the description adds no extra meaning, resulting in a baseline score of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: 'Delete a reminder from a task.' It specifies the verb (delete), the resource (reminder), and the context (from a task), which distinguishes it from sibling tools like update_reminders or retrieve_reminders.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like partial_update_reminders or update_reminders. It does not mention prerequisites, exclusions, or scenarios where another tool would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.