Skip to main content
Glama

Get Task

get_task
Read-onlyIdempotent

Retrieve a single task by its ID to view its full comments and assignees. Find the ID with list_tasks, then use the retrieved details to update or comment on the task.

Instructions

Get one task by id and return it with its full comments and assignees. Read-only. Resolve the id first with list_tasks — never guess it; pair with update_task or comment_on_task to act on what you read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesTask id, from list_tasks.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.14
  2. Removedv0.1.12
  3. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the 'Read-only' statement adds little. However, the description adds value by disclosing that the response includes 'full comments and assignees' and emphasizes the constraint to never guess the id, going beyond what annotations provide.

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 two sentences, with the primary purpose first and additional guidance second. Every sentence contributes information without any redundancy or fluff.

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?

For a simple read tool with one parameter and no output schema, the description covers the essential aspects: what it does, what it returns, how to get the id, and how to pair with other tools. It lacks explicit error handling behavior, but that is not critical for this straightforward operation.

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 coverage is 100% and the schema description for 'id' already states 'Task id, from list_tasks.' The description repeats this advice ('Resolve the id first with list_tasks'), reinforcing it but not adding new semantic meaning beyond the schema.

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 clearly states the tool's function: 'Get one task by id and return it with its full comments and assignees.' This uses a specific verb and resource, and the mention of comments and assignees differentiates it from list_tasks and other task-related tools.

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

Usage Guidelines5/5

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

Explicit guidance is provided: 'Resolve the id first with list_tasks — never guess it; pair with update_task or comment_on_task to act on what you read.' This tells the agent when to use the tool (after listing) and names complementary tools for follow-up actions, making alternatives clear.

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