Get task
reclaim_get_taskGet a single task by id. Reclaim REST: GET /api/tasks/{id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The task id. |
reclaim_get_taskGet a single task by id. Reclaim REST: GET /api/tasks/{id}.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The task id. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description's 'Get' is consistent. The description adds the REST endpoint reference, which is a minor behavioral detail, but no error cases, authentication needs, or other context are provided. With annotations covering safety, a score of 3 is appropriate.
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, front-loaded with the core purpose and immediately followed by the REST path. No unnecessary words or repetition.
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 single-task retrieval with one required parameter and no output schema, the description fully states what it does and the endpoint. No return value explanation needed since output schema is absent, and the tool is straightforward.
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 schema has 100% coverage, describing the id parameter as 'The task id.' The description reinforces this by saying 'by id' but adds no new meaning beyond the schema. Baseline 3 is correct.
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 clearly states 'Get a single task by id' with a specific verb and resource, and the REST endpoint further reinforces the exact operation. It distinguishes from sibling tools like list_tasks (plural) and update_task/delete_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?
The description implies use when you need one task by its ID, but it does not explicitly state when to prefer this over list_tasks or mention any exclusions or alternatives. Context is implied but not directly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.