Delete a watch
delete_watchDelete a watch by ID to cancel monitoring for a specific bank account or transaction.
Instructions
Remove a watch by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
delete_watchDelete a watch by ID to cancel monitoring for a specific bank account or transaction.
Remove a watch by id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v0.1.5Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It communicates that deletion happens but does not disclose consequences such as irreversibility, side effects on related resources, authorization requirements, or behavior when the id does not exist.
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 front-loaded sentence with no filler. Every word carries meaning and it is immediately scannable.
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?
The tool is simple: one required string parameter and no output schema. The description is almost sufficient for an agent to call it correctly. It only lacks a brief note on failure/not-found behavior or irreversibility, which prevents a 5.
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 schema gives only a required string named 'id' with 0% description coverage. The description's 'by id' confirms that the parameter is the identifier of the watch to remove, which is useful but minimal; it does not add format, source, or lifecycle context.
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 uses a specific verb ('Remove') with a specific resource ('a watch') and the exact selector ('by id'). It is distinct from watch siblings like create_watch, list_watches, and check_watches, so an agent can tell what this tool does without inspecting further.
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 explicit when-to-use or when-not-to-use guidance, and no alternative tool is named. However, the delete semantics are clear enough that the intended use (when a watch must be removed) is implied by the verb and resource.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.