Skip to main content
Glama

get_job

Check the status of a generation job by job_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Check the status' does signal a read-only operation, but the description does not mention possible status values, polling expectations, or behavior for an unknown or expired job_id.

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 one short, focused sentence with no filler. It front-loads the action, resource, and parameter role, and every word contributes to understanding.

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

Completeness3/5

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

For a simple one-parameter read-only tool, the description is mostly adequate, but it does not explain what the status response looks like or how job_id relates to the generate_sound workflow. With no output schema, the description could usefully mention that job_id is returned by generate_sound and that get_sound is used once the job completes.

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

Parameters4/5

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

The schema has 0% description coverage, so the description must compensate. The phrase 'by job_id' clarifies that the single required parameter identifies the generation job whose status is being checked, adding semantic context beyond the bare schema. It does not explain where job_id comes from, but the mapping is clear.

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?

The description opens with a specific verb, 'Check', and a specific resource, 'status of a generation job', and identifies the required input 'job_id'. This clearly distinguishes get_job from siblings like get_sound and search_sounds, which operate on sound resources rather than job status.

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?

No guidance is provided about when to use this tool versus alternatives. The description does not state that get_job should be used after submitting a generation job or before the sound is ready, leaving the agent to infer the workflow context from sibling names.

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

Each tool has a distinct role: generating, checking generation status, fetching metadata by slug, and searching. No overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a clear verb_noun pattern (generate_sound, get_job, get_sound, search_sounds). Consistent snake_case and predictable resource-based naming.

Tool Count5/5

Four tools cover the core workflow of a sound-generation/search service without excess. The count feels well-scoped and every tool earns its place.

Completeness5/5

The surface covers searching existing sounds, generating new ones, checking job status, and retrieving full metadata. No obvious gaps for the stated purpose; missing operations like deletion are not applicable in this domain.

Resources