Skip to main content
Glama

generate_status

Check the current status of a video generation job by passing its ID and optional backend to retrieve the job's state and progress.

Instructions

State of a generation job; the backend is recovered from the local metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
backendNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does disclose one useful trait: the backend is recovered from local metadata, so the backend parameter may be redundant. However, it does not state whether the operation is read-only or describe how the returned state is represented.

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?

The description is a single compact sentence with no filler, and the core resource ('generation job state') is front-loaded. It is concise, though the lack of an explicit verb makes the structure slightly elliptical.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a status tool with no output schema, the description does not explain what the returned state contains, what possible states exist, or how the backend parameter interacts with the local metadata. It leaves an agent with enough to guess, but not enough to call it with full confidence.

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

Parameters2/5

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

Schema description coverage is 0%, so the description needed to compensate. It only partially explains the backend parameter (recovered from local metadata) and says nothing about the required id parameter or how it is used to locate the generation job.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource ('a generation job') and conveys that the tool reports its state, but it lacks an explicit verb such as 'get' or 'returns' and does not distinguish generate_status from sibling tools like generate_fetch or render_status. The backend-metadata clause is an implementation detail rather than a purpose statement.

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

Usage Guidelines2/5

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

There is no guidance on when to call this tool instead of generate_fetch, render_status, or other status-related tools. The only hint is that the backend is recovered from local metadata, which implies callers do not need to supply it, but this is not stated as a usage rule.

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