Skip to main content
Glama

get_task_details

Retrieve complete details of a specific task by providing its task ID, enabling quick access to status, priority, and related information.

Instructions

Show details for a specific task.

Args: task_id: The ID of the task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. The verb 'Show' does imply a read-only operation with no mutation, which is appropriate. However, it does not disclose behavior around missing tasks, permissions, or whether only existing tasks are returned, leaving some ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and front-loaded, with a clear one-sentence summary followed by an Args block. It contains no filler, though the Args section mostly restates the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity—one required parameter and an output schema—the description is largely complete for invoking the tool. It identifies the operation and the parameter, while the output schema covers return values. It could be improved by noting how to discover task_id, but nothing essential for a basic call is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides only 'task_id' as a required string with no description. The description adds 'task_id: The ID of the task,' which is nearly tautological and does not explain where to find the ID, its format, or how it relates to other task tools. With 0% schema coverage, the description should compensate more but barely does.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Show') and resource ('details for a specific task'), making it clear this is a single-task retrieval tool. It is implicitly distinguished from sibling tools like list_tasks and create_task, though it does not explicitly call out the difference from get_metadata.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no explicit guidance on when to use this tool versus alternatives such as list_tasks, get_metadata, or update_task_status. The intended use is only implied by 'for a specific task,' and there is no mention that task IDs can be obtained from list_tasks.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.