Skip to main content
Glama

task_get

Read-only

Retrieve complete task details by ID, including the chronological comment log, status changes, and agent notes. Use after task_list to inspect a specific task's description and expected outcome without modifying anything.

Instructions

Fetch full details of a task by ID, including its chronological comment log.

Use when task_list() gave you an ID and you need the description, expected outcome, and full history of status changes and agent comments. Read-only, no side effects.

Args: task_id: The UUID of the task. Short prefixes (min 4 chars) are resolved if unambiguous.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesThe UUID of the task. Short prefixes (min 4 chars) are resolved if unambiguous.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.17.0
  2. Removedv0.16.1
  3. Addedv0.9.0
  4. Removedv0.7.0
  5. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description redundantly states 'Read-only, no side effects'—which adds no new value. However, it does add behavioral context beyond annotations: it specifies that the tool returns the full description, expected outcome, and complete history of status changes and comments, and it discloses the short-prefix resolution behavior. This is meaningful and earns a 4.

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

Conciseness5/5

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

The description is compact, with two clear sentences and an Args listing. The purpose and usage are front-loaded, and every sentence adds value. The Args section repeats the schema but is minimal and unobtrusive. No wasted words.

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 is a simple single-parameter get operation and an output schema exists (indicated by 'Has output schema: true'), the description fully covers usage, purpose, and parameter resolution. It doesn't describe the return format, but that's covered by the output schema. The only minor gap is the lack of an explicit exclusion clause, but overall it's complete for this tool's complexity.

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

Parameters3/5

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

Schema description coverage is 100%: the schema's task_id description exactly matches the Args text in the description. The description does not add any extra meaning beyond what the schema already documents. Per the rubric, a baseline of 3 applies when schema coverage is high and the description adds nothing new.

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

Purpose5/5

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

The description opens with a specific verb ('Fetch full details of a task by ID') and resource, and further clarifies it includes a chronological comment log. It clearly distinguishes from task_list by stating that task_get is used when an ID is already available. This is unambiguous and differentiates it from the many sibling task tools.

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

Usage Guidelines4/5

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

It gives explicit when-to-use instructions: 'Use when task_list() gave you an ID and you need the description...' This provides clear context. It does not explicitly state when not to use it, but the implicit contrast with task_list and the read-only nature effectively guide selection. No alternatives are named directly, but the context is strong enough for a 4.

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