Skip to main content
Glama

Create a video

create_video

Start generating a video from a text description with GenMagic. Video is asynchronous, so this returns a job id immediately (nothing is charged yet). Poll it with the get_video tool every few seconds until the status is "completed" to get the hosted video URL. On-brand automatically when the account has brand personalization on.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
promptYesA description of the video to create.
aspect_ratioNoAspect ratio: 16:9 (landscape), 9:16 (portrait), or 1:1 (square). Defaults to 16:9.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and delivers substantially: it discloses asynchronous behavior (job id returned immediately), billing implications ('nothing is charged yet'), the polling protocol, and automatic brand personalization when enabled. Operational behavior that the schema cannot express is fully surfaced.

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, front-loaded with purpose, then the key behavior (async + job id + billing), then the polling workflow, then the brand personalization conditional. Every sentence earns its place; there is no fluff or repetition of schema content.

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?

Despite no output schema and no annotations, the description explains the return value (job id), the completion condition (status 'completed'), how to obtain the final hosted URL (get_video), and billing behavior. Nothing essential is missing for a 2-parameter async creation tool.

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 prompt and aspect_ratio are already fully documented; baseline is 3. The description adds only marginal parameter context by calling prompt a 'text description' and hinting that brand personalization may alter how the prompt is applied. It does not expand aspect_ratio meaning beyond the schema's enum.

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 a specific verb and resource: 'Start generating a video from a text description.' It clearly differentiates from siblings — video creation versus image/music/speech/text generation — and explicitly names get_video as the retrieval sibling, so an agent can distinguish roles without opening schemas.

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

Usage Guidelines4/5

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

The description defines the workflow explicitly: use this tool to start generation, then 'Poll it with the get_video tool every few seconds until the status is "completed"'. This routes the agent to the correct sibling for status checking. It does not explicitly state exclusions among the generate_* siblings, but the purpose clarity makes those boundaries obvious.

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.2/5.0
Disambiguation4/5

Each tool is primarily tied to a distinct modality or lifecycle step: image, music, speech, text, and video submission/polling. The only minor overlap is that generate_text can also produce SVG graphics, which borders on generate_image's territory, but the type parameter and logo hint keep them separable.

Naming Consistency4/5

All tool names are lowercase snake_case verb_noun, which is readable and mostly predictable. The slight inconsistency is that four generators use generate_* while the video counterpart uses create_video and get_video instead of generate_video and check_video.

Tool Count5/5

Six tools are well-scoped for a multi-modal generation server: text, image, music, speech, video creation, and video status. Each tool covers a necessary function without redundancy or bloat.

Completeness5/5

The tool surface covers every advertised generation modality and includes the required async polling lifecycle for video. No obvious dead ends or missing operations are needed for the core generation workflow.