get_task
Retrieve a specific task from the task manager by ID to view its details.
Instructions
Get a specific task by ID
Args:
task_id: The ID of the task to retrieve
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Retrieve a specific task from the task manager by ID to view its details.
Get a specific task by ID
Args:
task_id: The ID of the task to retrieve
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It does not disclose what happens when the task ID does not exist, whether authentication or workspace scoping is required, or what the return payload contains. For a read tool with zero annotation coverage, this is a significant 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?
The description is short and front-loaded with the core action, and the Args block maps cleanly to the single parameter. It is minimally wasteful, though the docstring-style Args block adds little for a one-parameter 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?
With no output schema and no annotations, the description should explain what a successful retrieval returns and how failures surface, but it says nothing about either. For a lookup tool this leaves material gaps for an agent that must decide whether to call it and how to interpret the result.
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%, so the description's 'The ID of the task to retrieve' is the only semantic guidance for task_id, which is better than nothing. However, it does not clarify the ID format, whether it is a numeric internal ID versus a human-readable key, or where the caller obtains valid IDs.
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 clear verb and resource: 'Get a specific task by ID.' It is distinguishable from create/update/delete/complete by the read nature of the operation, but it does not differentiate itself from get_task_summary or clarify how it differs from list_tasks.
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 explicit guidance on when to use this tool versus get_task_summary or list_tasks. The 'by ID' phrasing weakly implies it is for fetching one known task, but the agent is left to infer this from the sibling names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.