Skip to main content
Glama
vectorless
by vectorless

download_status

Check a download's state, percent complete, and queue position by supplying username and transfer ID. Monitor progress to know when transfers finish.

Instructions

Check one download: state, percent complete and position in the peer's queue. Needs the username and transfer id from download or downloads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
usernameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are present, so the description carries the behavioral burden. 'Check' clearly implies a read-only status operation, and the description discloses what the call reports (state, percent, queue position). It does not detail failure behavior, but the read-only nature is strongly implied.

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?

Two sentences, no filler. The primary purpose is stated first, followed by the parameter source requirement. Every clause earns its place.

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?

The tool is simple, an output schema exists, and the description provides the crucial prerequisite. It could be slightly more explicit about not listing all downloads, but nothing essential is missing for correct invocation.

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 coverage is 0%, so the description must add meaning. It clarifies that `id` is the transfer id and that both `username` and `id` come from `download` or `downloads`, which gives an agent the necessary provenance for both parameters.

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 uses a specific verb ('Check'), a specific resource ('one download'), and names the exact returned data: state, percent complete, and queue position. This clearly distinguishes it from the sibling tools like `downloads` and `cancel_download`.

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

Usage Guidelines4/5

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

The description gives explicit context for when to use the tool: after obtaining a username and transfer id from `download` or `downloads`. It does not explicitly state when not to use it, but the prerequisite guidance makes the intended usage clear.

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