delete_notes
Delete Anki notes and their associated cards by ID to remove selected flashcards.
Instructions
Delete notes (and their cards) from Anki
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteIds | Yes | IDs of notes to delete |
Delete Anki notes and their associated cards by ID to remove selected flashcards.
Delete notes (and their cards) from Anki
| Name | Required | Description | Default |
|---|---|---|---|
| noteIds | Yes | IDs of notes to delete |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, and it does disclose one important trait: cards are deleted alongside their notes (cascading effect). However, it omits that deletion is typically permanent/irreversible, what permissions are required, and whether partial failures are possible — significant gaps for a destructive tool.
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?
A single tight sentence with the operation front-loaded and zero filler. The parenthetical efficiently conveys the cascade side effect without padding.
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 destructive, annotation-free tool with no output schema, the description is adequate but not complete — it covers the cascade but omits irreversibility and permission context that an agent needs before invoking a delete.
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?
Schema coverage is 100% with a single documented parameter ('IDs of notes to delete'), so the schema already conveys the required format. The description adds no additional semantics beyond what the schema provides, making the baseline 3 appropriate.
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?
States a clear verb (Delete) and resource (notes) scoped to Anki, plus the notable consequence that associated cards go with them. It reads distinctly from siblings like create_card, update_card, and search_cards, though it never names them.
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?
There is no guidance on when to delete versus alternative actions, no prerequisites, and no warning about the irreversibility of the operation. The agent is left to infer everything about appropriate use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.