accelo_delete_timer
Delete a specific timer by ID to remove unwanted time tracking entries from your records.
Instructions
Delete a timer.
Args: id: Timer ID to delete
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Delete a specific timer by ID to remove unwanted time tracking entries from your records.
Delete a timer.
Args: id: Timer ID to delete
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it only restates the operation. It does not disclose irreversibility, permission requirements, or whether deleting removes logged time or merely the running entry.
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?
Very short and front-loaded with the operation first. The boilerplate 'Args:' block is low-value but not wasteful, and nothing is buried.
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 single-parameter operation with no annotations and no output schema, this is insufficient: no warning about the effect of deletion, no sibling disambiguation, no id-sourcing guidance. An agent has the minimum needed to invoke it but not to invoke it wisely.
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 0% and the only via-schema information is the bare title 'Id'. The description adds only 'Timer ID to delete', which confirms the id refers to a timer but supplies no format, type, or sourcing detail to compensate for the coverage gap.
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+resource ('Delete a timer') so the agent knows the operation. However, it does not differentiate from close siblings like accelo_cancel_timer, accelo_pause_timer, or accelo_list_timers, which is needed given how many timer tools exist.
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?
No when-to-use guidance at all. It never explains how this differs from accelo_cancel_timer or accelo_pause_timer, nor whether a running timer must be stopped first, leaving the agent to guess among near-synonymous siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.