Skip to main content
Glama

Get song generation status

get_song_generation_status
Read-only

Poll a SoundBreak song generation until complete. Call after create_song_generation with generation_id and the same end_user_id. Keep calling while poll_again is true. Share listen_url only when generation_status is complete and ready_to_share is true. There is no in-chat widget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
end_user_idNoStable per-person id for this caller. Required for complimentary gens and account linking. Dify: set Fixed from sys.user_id (string or number is fine). Pass the same value on every generate/status/library call. Do not invent a new id each turn.
generation_idNo32-char hex generation_id from create_song_generation. Optional — omit to check the latest generation for this user.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds the polling loop semantics, the condition for sharing the listen_url, and the limitation of no in-chat widget. No contradiction with annotations.

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?

Three sentences with zero waste. Purpose is front-loaded, followed by usage instructions and a limitation. Every sentence earns its place.

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 polling status tool, it explains the entire call loop, the conditions to act on the result, and a limitation. Though no output schema, it implies response fields (poll_again, generation_status, ready_to_share, listen_url) sufficiently 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.

Parameters3/5

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

Schema description coverage is 100%, so both parameters are already documented. The description only reiterates using the same end_user_id and linking to create_song_generation, which adds minimal value beyond the schema. Baseline 3 is appropriate.

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?

States specific verb 'Poll' and resource 'song generation', clearly distinguishing it from sibling tools like create_song_generation, list_my_songs, or remove_song_preview. An agent can immediately identify its role without ambiguity.

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

Usage Guidelines5/5

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

Explicitly instructs to call after create_song_generation, pass the same end_user_id, keep polling while poll_again is true, and share listen_url only when generation_status is complete and ready_to_share is true. Gives precise sequencing and conditional behavior.

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.

Resources