Skip to main content
Glama

get_download_progress

Monitor download progress by retrieving bytes, percent, speed, and ETA. Detect stalled transfers using silence duration, while automatic retries resume without intervention.

Instructions

Report how far a download has got: bytes, percent, speed and an ETA.

silent_for_s is the telling number, as it is for a run: a slow link keeps it small while a dead one lets it grow. A stalled transfer does not need cancelling - the retry logic resumes by itself - so act only on a silence that outlasts COMFYUI_DOWNLOAD_TIMEOUT several times over.

Args: job_id: '/', or just the file name, or empty for the most recent download.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that stalled transfers auto-resume and should not be cancelled, and explains how to interpret silent_for_s. It also implies read-only nature via 'Report', but does not explicitly confirm non-mutation or error handling.

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 well-structured with a concise main purpose, a useful interpretive note, and a clear argument specification. Every sentence adds value; no fluff or repetition.

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 single-parameter read-only tool with an output schema, the description covers all needed context: parameter format, interpretation of results, and actionable guidance. It is complete enough for an agent to use correctly.

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

Parameters5/5

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

The description fully documents the only parameter job_id, providing three acceptable forms: folder/filename, filename only, or empty for most recent. This goes far beyond the schema, which only shows a default value.

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?

Begins with a specific verb and resource: 'Report how far a download has got' and lists concrete outputs (bytes, percent, speed, ETA). This clearly distinguishes it from related tools like download_model 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?

Provides clear operational guidance: explains that silent_for_s indicates stall vs. slow link, and advises waiting for silence exceeding COMFYUI_DOWNLOAD_TIMEOUT before acting. However, it does not explicitly mention alternative tools or when not to use this tool.

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