Skip to main content
Glama

get_task

Retrieve a task's title and description by ID to understand what needs to be done.

Instructions

Get core information about a specific task (Title and Description). Use this for general context about what needs to be done.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe ID of the task to retrieve

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the returned fields (Title, Description), which is useful, but says nothing about auth requirements, error behavior for a missing id, or read-safety characteristics.

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?

Two short sentences with the returned scope front-loaded, and no wasted wording. It is efficient, though it omits sibling routing that a sentence could have carried.

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

Completeness3/5

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

For a simple one-param read tool with no output schema, describing the return fields (Title, Description) is adequate. The unresolved overlap with get_task_details is the notable gap that keeps this from being fully complete.

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% for the single required 'id' parameter, so the schema already documents it fully. The description adds no syntax, format, or constraint detail beyond what the schema provides, making the baseline 3 appropriate.

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?

States a specific verb (Get) and resource (task) and scopes what it returns to Title and Description. However, it does not distinguish itself from the sibling get_task_details, leaving ambiguity about which 'get a task' tool is the right one.

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

Usage Guidelines3/5

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

'Use this for general context about what needs to be done' implies a usage context but names no alternatives and draws no boundary against get_task_details or list_tasks. The agent must infer when this is preferred over the more detailed sibling.

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