Skip to main content
Glama

get_task

Read-only

Retrieve full task details by its internal ID: status, due dates, time tracking, todos, comments, and attachments.

Instructions

Get detailed task information by its internal task ID (e.g., 14677418).

Returns task details including:

  • Title, description, status (open/closed), due date, and timestamps

  • Time tracking: initial estimate, remaining, billable, and worked time (in minutes)

  • Todo counts: total and open

  • comments: the most recent comments (up to comment_limit, most recent first)

  • todos: up to 100 checklist items, with todos_truncated and todos_note when more exist

  • attachments: id and filename for each file attached to the task

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesThe unique Productive task identifier (internal ID)
comment_limitNoNumber of most recent comments to include (default: 5, max: 200)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv0.2.8
    • addedInput schema / properties / comment_limit
      Added value: +{
      +  "default": 5,
      +  "description": "Number of most recent comments to include (default: 5, max: 200)",
      +  "type": "integer"
      +}
  2. Changed1 schema field changedv0.2.0
    • addedInput schema / additionalProperties
      Added value: +false
  3. Changed1 schema field changedv1.0.0
    • changedInput schema / properties / task_id / description
      Previous value: -"Productive task ID"New value: +"The unique Productive task identifier (internal ID)"
  4. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, but the description adds valuable behavioral detail beyond that: comment ordering and limiting via comment_limit, todo truncation with todos_truncated and todos_note, and attachment results limited to id and filename. This gives the agent an accurate picture of response behavior without needing to guess.

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 front-loaded with the operation and then uses scannable bullets to enumerate return categories. Every line adds distinct information about task details, time tracking, todos, comments, or attachments. There is no filler or redundancy.

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

Completeness5/5

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

The description is complete for correct invocation: it specifies the required parameter format, the optional limit behavior, the return categories, and the truncation signals. The read-only annotation covers safety, and the existence of an output schema further reduces the burden. Nothing necessary for correct use is missing.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds extra meaning by clarifying that task_id is an internal Productive identifier with a concrete example, and by explaining that comment_limit controls how many most recent comments are returned. It avoids merely repeating 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 states a specific verb and resource: 'Get detailed task information by its internal task ID.' It clearly distinguishes this from sibling tools like list_tasks (which lists many tasks) and get_task_history (which returns history rather than current task details). The example ID anchors the exact input expected.

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?

The usage context is implied: call this tool when you already have an internal task ID and need full details for that single task. However, the description does not explicitly mention alternatives or when not to use it, such as using quick_search or list_tasks to first locate the task ID. No exclusions or alternative routing are provided.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/druellan/Productive-Simple-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server