Skip to main content
Glama

Get a finished job (video URL and details)

get_job_result

Retrieves a job's full result: signed video or audio URLs valid for 7 days, plus the parameters used and credits charged.

Instructions

Full record of a job. For craftstory-2 the video is in video, for minimax-h3 in video_url, for audio clips in file; all are signed URLs valid for 7 days (call again for a fresh link). Also returns the parameters used and the credits charged.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
modelYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.7/5.0
Behavior4/5

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

No annotations exist, so the description carries the full burden and largely does: it discloses the model-dependent field location of the asset, that URLs are signed and expire in 7 days, that re-calling yields a fresh link, and that parameters and credits are returned. It omits the important edge case of what happens if the job is not yet finished.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two dense sentences, front-loaded with what is returned and then the per-model field mapping. Every clause carries information; the only cost is that the run-on structure makes the 7-day expiry easy to skim past.

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?

With no output schema and no annotations, the description does the work of explaining the return payload (video/video_url/file, parameters, credits) and the URL lifetime. The notable gap is the failure/pending-state behavior, which matters for a job-result retrieval tool alongside get_job_status.

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?

Schema description coverage is 0%, so the description must compensate. It effectively enumerates the meaningful `model` values and maps each to an output field, which adds real meaning, but the required `id` parameter is never explained (UUID of the job, accepted formats, source of the value).

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?

Opens with a specific noun phrase ('Full record of a job') and the title narrows it to a finished job, so the resource and the completion condition are clear. It does not explicitly differentiate itself from siblings get_job_status / wait_for_job, which an agent must infer.

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

Usage Guidelines3/5

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

Usage is only implied: the title says 'finished job' and 'call again for a fresh link' hints at re-fetching, but there is no explicit when-to-use-versus-get_job_status/wait_for_job routing. An agent likely infers the right moment, but nothing in the text confirms it.

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