Skip to main content
Glama

render_status

Check a video rendering job's current status by passing its job ID, returning the persisted render state to confirm completion or continuing work.

Instructions

Persisted render state (no estimated percentage).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.1/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavior disclosure. It only mentions that there is no estimated percentage, which is a small behavioral detail, but fails to state whether the tool is read-only, what it returns, or any error conditions. This is insufficient for an agent to predict its behavior.

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

Conciseness3/5

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

The description is extremely short and has no wasted words, but it is under-specified. It front-loads the phrase 'Persisted render state,' but that phrase is not a clear action statement. Conciseness is achieved at the expense of clarity, making this an average effort.

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

Completeness1/5

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

For a tool with one parameter, no output schema, and no annotations, the description is far too thin. It does not explain what action is performed, what the response contains, or how it relates to the render lifecycle. An agent would not be able to call this tool correctly based on the provided text.

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

Parameters1/5

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

Schema description coverage is 0% and the description provides no explanation of the job_id parameter or how it is used. The parameter itself is a UUID and somewhat self-explanatory, but the description adds zero semantic value beyond the raw schema, so it fails to compensate for the coverage gap.

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 'Persisted render state (no estimated percentage)' identifies the resource (render state) but uses a noun phrase rather than a clear verb like 'retrieve' or 'get'. It gives some idea of the tool's purpose but is vague and does not distinguish it from siblings like render_history or render_get_output.

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 use this tool versus alternatives such as render_history or render_get_output. The description offers no context about the appropriate use case, leaving the agent to infer from the name alone.

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