Skip to main content
Glama

Check download progress

get_ajax_progress

Polls the status of a previously-submitted download job. Keep polling until progress == 1000 (i.e. 100%) and download_url is populated. Billing per call: 1 Credits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoThe job id returned by the Download endpoint.

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does well: it discloses the polling nature, the exact success criteria fields (progress and download_url), and the cost implication ('Billing per call: 1 Credits'). It lacks error/failure behavior details (e.g., what happens if the job id is invalid), but the disclosed cost and polling semantics are valuable beyond the schema.

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?

Three compact sentences, each earning its place: purpose, polling condition, and cost. Front-loaded with the core verb and resource, with zero 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?

For a simple one-parameter polling tool with no output schema and no annotations, the description provides the essential completion criteria (progress == 1000, download_url populated), which is the single most critical piece of information an agent needs. The cost disclosure adds operational context. The polling semantics are fully specified, making the tool self-sufficient despite lacking an output schema.

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 covers 100% of the parameter with 'The job id returned by the Download endpoint,' so the description adds minimal parameter-specific value. The description does reference the response fields (progress, download_url) that the agent needs to inspect, but this is output behavior rather than input parameter deepening—baseline 3 is appropriate given full schema coverage.

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 clearly states the verb ('Polls') and resource ('status of a previously-submitted download job'), making the tool's function obvious against the sibling get_ajax_download_php. The title 'Check download progress' reinforces the purpose, though the description doesn't explicitly name the sibling as the alternative for actually fetching the 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?

Provides excellent when-to-use guidance with the explicit polling loop: 'Keep polling until `progress == 1000` (i.e. 100%) and `download_url` is populated.' This gives the agent a concrete success condition and termination criteria. However, it does not explicitly state when NOT to use this tool versus the sibling (e.g., when to call get_ajax_download_php instead).

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.1/5.0
Disambiguation5/5

The two tools have clearly distinct roles: one creates a download job and the other polls its progress. There is no overlap or ambiguity between them.

Naming Consistency3/5

Both tools share the get_ajax_ prefix, which is consistent, but the second segment is not parallel: download_php is an implementation detail while progress is a resource. The naming is readable but not cleanly patterned.

Tool Count4/5

Two tools is minimal but appropriate for a narrow asynchronous download API: submit and poll are the essential operations. It is slightly below the typical 3-15 range, but each tool earns its place.

Completeness4/5

The core workflow is covered: submit a job, poll for completion, and retrieve the final download URL. Missing cancel or format-discovery endpoints are minor gaps for this narrow scope.

Resources