delete_task
Delete a task from Kaneo by providing its task ID to remove it permanently.
Instructions
Delete a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | Task ID to delete |
Delete a task from Kaneo by providing its task ID to remove it permanently.
Delete a task
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | Task ID 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 full responsibility for behavioral disclosure. It only repeats the obvious destructive implication of 'Delete' and omits critical side effects such as whether subtasks are cascaded, whether deletion is permanent or recoverable, and whether special permissions are required.
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 extremely concise at three words with no waste, but it is under-specified rather than efficiently informative. It lacks any structured caveats or elaboration that would make the brevity genuinely useful.
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 operation with no output schema and no annotations, the description leaves unresolved critical details: return behavior, error handling, and the effect on related subtasks. This is a meaningful gap for an agent deciding whether and how to invoke the tool.
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 input schema already documents taskId with a clear description ('Task ID to delete') at 100% coverage. The tool description adds no additional semantic detail, so the baseline score of 3 applies since the schema does the heavy lifting.
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?
Description states a specific verb 'Delete' and resource 'task', which clearly distinguishes it from all sibling tools that perform create, update, list, get, or search operations. It is brief but unambiguous about what the tool does.
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 guidance is provided about when to use this tool vs alternatives, nor about prerequisites, irreversibility, or cases where a different tool (like update_task) would be more appropriate. The usage context is left entirely to inference from the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.