edit_task
Update an existing task by its ID with a new body object, enabling task modification during multi-agent software development workflows.
Instructions
Edit a task by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| body | Yes |
Update an existing task by its ID with a new body object, enabling task modification during multi-agent software development workflows.
Edit a task by ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| body | Yes |
Changes observed during successful MCP inspections.
v0.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing about mutation semantics (full replace vs partial update), permissions/auth requirements, reversibility, or what happens to unspecified fields. For a write tool with an opaque, open-ended body object, this is a total gap.
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?
A single five-word, front-loaded phrase with no filler, so it is not verbose. But the brevity stems from under-specification rather than efficiency; it is too short to be useful for a mutation tool.
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 edits a nested, unconstrained body object with no annotations, no output schema, and 0% parameter documentation; the description supplies only the ID lookup. It is substantially incomplete for an agent to call this safely and correctly.
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 description coverage is 0% for both parameters. The phrase 'by ID' identifies the role of the id parameter, but the body object — defined only as an empty schema with additionalProperties: true — is completely unexplained, so the description fails 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?
It states a verb (edit) and a resource (task) with an ID qualifier, so the basic operation is identifiable. However, it adds nothing beyond what the name 'edit_task' already implies, and it gives no indication of scope or how it differs from siblings like edit_step or cancel_task.
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 when-to-use guidance, no prerequisites, and no mention of alternatives such as edit_step or cancel_task. The agent must infer usage entirely from the tool name and schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.