Skip to main content
Glama

get_task_status

Read-onlyIdempotent

Poll the status and retrieve the result of a previously submitted task. Returns the current status (pending, in_progress, pending_review, completed, disputed), the result payload, and any output URLs (video, screenshot). Use this in a polling loop after submit_task if no callback_url was provided.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYesThe task ID returned when the task was submitted

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoTask result payload when completed
statusYes
task_idYes
operatorNoName of the operator who completed the task
output_urlNoURL to download output file (video, screenshot, etc.)
completed_atNoISO timestamp of completion

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds value by detailing what the tool returns (status values, result payload, output URLs) and prescribing a polling loop usage, which reinforces the safe, idempotent nature. No contradictions, and the added context is meaningful.

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, front-loaded with the core purpose, then return details, then usage context. Every sentence earns its place with no redundancy or filler. Very concise and well-structured.

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 tool is simple (single parameter), has annotations, and an output schema. The description covers the essential return values and provides guidance for the common polling use case. It is complete for an agent to select and invoke the tool correctly.

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?

The schema fully describes task_id with 'The task ID returned when the task was submitted' (100% coverage). The description does not add extra parameter meaning beyond the schema. With high schema coverage, a baseline of 3 is appropriate.

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: polling status and retrieving results of a previously submitted task. It uses specific verbs ('poll', 'retrieve') and identifies the resource ('status and result'), and it distinguishes itself from sibling tools (submit_task, review_task) by focusing on post-submission status and result retrieval.

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?

The description explicitly says when to use this tool: 'in a polling loop after submit_task if no callback_url was provided.' It also implicitly gives a when-not condition (if a callback_url is provided, polling may be unnecessary), and references the sibling submit_task for context. This is clear usage direction.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool serves a distinct stage in the task lifecycle: submit creates a task, get_task_status polls it, and review acts on the pending_review outcome. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (submit_task, get_task_status, review_task) with clear, specific verbs and the same domain object. This is a model of naming consistency.

Tool Count5/5

Three tools is the ideal number for this server's narrow purpose—submitting, monitoring, and reviewing human tasks. Each tool is necessary and there are no redundant or missing tools.

Completeness5/5

The toolset fully covers the workflow: task creation, status polling, and final approval/dispute resolution. The documented auto-approval mechanism fills any edge case, leaving no obvious functional gaps.

Resources