Pause a task
pause_taskStop firing until you resume. Nothing is charged while a task is paused.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Task id (UUID), as returned by create_task or list_tasks. |
pause_taskStop firing until you resume. Nothing is charged while a task is paused.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Task id (UUID), as returned by create_task or list_tasks. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full disclosure burden. It clearly states that pausing stops firing and that nothing is charged while paused, adding useful behavioral context beyond the tool name. It does not mention idempotency or what happens if the task is already paused, but the core behavior is transparent.
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?
Two short sentences deliver the key behavioral facts ('stop firing', 'nothing charged') with no filler. The most important information is front-loaded.
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 tool with no output schema, the description covers the essential semantics: what pausing does and the cost implication. It does not detail edge cases like already-paused tasks, but the overall definition is sufficient for an agent to invoke the tool 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 100%, and the parameter id is already documented as 'Task id (UUID), as returned by create_task or list_tasks.' The description adds no additional meaning beyond the schema, 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 states a specific verb ('Stop firing') and resource ('task'), making the tool's purpose immediately clear. It also distinguishes this tool from siblings like resume_task and run_task_now by describing the paused state as temporary until resumed.
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 implies usage context: use this tool when you want a task to stop firing temporarily. It references 'until you resume,' implicitly pointing toward resume_task, but it does not explicitly name alternatives or state when NOT to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.