delete_saved_search
delete_saved_searchDelete one of the connected user's saved searches by id (stops its alerts).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Saved search id (from my_saved_searches) |
delete_saved_searchDelete one of the connected user's saved searches by id (stops its alerts).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Saved search id (from my_saved_searches) |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide destructiveHint: true, so the description carries less burden. The description adds that the tool 'stops its alerts', which is useful behavioral context beyond annotations. No contradictions. However, it could mention irreversibility or permission needs.
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, concise sentence with no wasted words. It is well-structured and front-loaded with the primary action.
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?
Given the simple single-parameter schema, the presence of annotations, and the lack of output schema, the description sufficiently covers the tool's purpose and behavioral effect (deletion + alert stoppage). Complete for its complexity.
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 clear description for the sole parameter 'id'. The description does not add any additional semantics beyond the schema. Baseline of 3 is 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?
The description explicitly states the action ('Delete'), the resource (saved search), and scope (connected user's). The parenthetical '(stops its alerts)' adds specific behavioral detail. This clearly distinguishes it from siblings like save_search or search.
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 only states what the tool does ('Delete one of the connected user's saved searches by id'). It does not provide explicit guidance on when to use it versus alternatives, or when not to use it. For a simple deletion, this is adequate but lacks explicit usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.