Skip to main content
Glama
tsvikas
by tsvikas

get_task

Retrieve full details of a task—including notes, subtasks, dates, and tracking—or a project's open children by its ID.

Instructions

Full details of one task (note, subtasks, dates, tracking) or project (its open children).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYestask or project id

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
doneNo
frogNoEat the Frog: 1 frog, 2 baby, 3 monster
noteNo
typeNotask
titleYes
labelsNo
parentYespath like 'Work > Client A > Website', or 'Inbox'
do_dateNoDo date: the day it is scheduled for
done_atNo
due_dateNoDue date: hard deadline
end_dateNoEnd date: self-imposed target
priorityNolow, mid or high (projects)
subtasksNodone/total, e.g. '1/3'
trackingNotime tracking running now
parent_idNo
recurringNo
backburnerNo
created_atNo
depends_onNotitles of blocking items
importanceNo3 = P1 red, 2 = P2 orange, 1 = P3 yellow
open_tasksNo
start_dateNo
updated_atNo
review_dateNo
subprojectsNo
estimate_minNoDuration estimate in minutes
note_previewNo
other_fieldsNofields not modelled by the server
planned_weekNo
subtask_listNo
daily_sectionNo
planned_monthNo
first_scheduledNo
minutes_trackedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.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 behavioral burden alone. For a read-only fetch the safety profile is largely self-evident from 'get', and the description usefully discloses the payload shape and the task-vs-project branching. It does not state permission requirements, pagination, or behavior for a missing id, leaving some gaps.

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?

One compact sentence with the core purpose front-loaded and the task/project branching handled parenthetically. Every clause carries information; nothing is padding.

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?

An output schema exists, so the description need not document return values, and the sole parameter is fully documented in the schema. The description supplies the task-vs-project dual behavior, which is the main ambiguity for this tool. Only the absence of routing guidance versus sibling list/search tools keeps it 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?

A single parameter with 100% schema description coverage sets the baseline at 3. The description reinforces the schema by clarifying that the id may refer to either a task or a project, which affects the response shape, but adds no format or validation detail beyond that.

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 names a specific verb (get) and resource (task/project) and enumerates what 'full details' contains (note, subtasks, dates, tracking), which is far more informative than a bare restatement. It partially distinguishes itself from siblings like list_children by noting that a project returns 'its open children'. It stops short of explicitly contrasting with search_tasks or get_structure, so it lands at 4 rather than 5.

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?

There is no explicit when-to-use guidance and no alternatives named. With siblings such as list_children, get_structure, and search_tasks in the same namespace, the agent must infer that get_task is the single-item detail fetch rather than a list/search tool. Usage is only implied, not stated.

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