decline_task
Recipient declines an offered task without executing it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Recipient declines an offered task without executing it.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With only readOnlyHint=false, the description carries most of the behavioral burden. 'Declines an offered task' indicates mutation, and 'without executing it' adds a useful safety-relevant detail. However, it does not disclose side effects such as notifying the sender, whether the decline is reversible, or what state the task enters.
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 filler. The core action is stated first, and 'without executing it' earns its place because it clarifies a critical behavioral boundary.
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 simple one-parameter mutation with an output schema, the description supplies the essential context: who acts, on what kind of task, and that execution does not happen. It is slightly thin on state prerequisites or side effects, but not inadequate for confident invocation.
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% and the description never elaborates on task_id. The parameter's meaning is inferable from its name and the tool's purpose, but the description adds no semantic detail beyond the schema's type and pattern.
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 names a specific action ('declines'), a specific resource ('an offered task'), and the actor ('Recipient'). It clearly distinguishes this tool from siblings like accept_task, complete_task, or cancel_task by emphasizing the recipient and the offered, not-yet-executed state.
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 context is clear: use this when the recipient wants to decline an offered task without executing it. It does not explicitly enumerate alternatives or exclusions, but the actor/state framing makes the appropriate usage easy to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.