delete_task
Remove a task from Arca using its ID to clean up your workspace and lists.
Instructions
Delete a task by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task ID |
Remove a task from Arca using its ID to clean up your workspace and lists.
Delete a task by ID
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | The task ID |
Changes observed during successful MCP inspections.
v1.4.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Delete' signals mutation, but the description does not state that deletion is irreversible, whether related resources are affected, or 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 a single, front-loaded sentence with no wasted words. It directly states the action and the required identifier.
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 one-parameter CRUD tool, this is minimally adequate: the action and required input are clear. However, with no annotations and no output schema, the description leaves out broader context such as reversibility, permissions, and side effects.
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 fully documents task_id as a required string, so the description adds little beyond the phrase 'by ID'. The schema covers 100% of parameters, so the 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 uses a specific verb ('Delete'), a clear resource ('task'), and the identifier needed ('by ID'). This clearly distinguishes it from sibling tools like get_task, update_task, create_task, and delete_folder.
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 does not provide any guidance on when to use this tool versus alternatives, nor does it mention prerequisites or edge cases. The intended usage is only implied by the tool's name and the verb 'Delete'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.