Skip to main content
Glama

submit_video_job

Turn a script into a finished 1080p video — narrated, cut to matched stock footage, subtitles burned in, audio normalized to −14 LUFS. Returns a job id; poll get_job, then fetch_video. Use when you need a publishable video and have only text. $0.60 per video in USDC on Solana — no account, no API key, no human in the loop.

script: narration body to speak (plain text) title: optional intro title shown for ~4s at the top voice: voice id from list_voices(), e.g. female_warm subtitles: burn-in subtitles (default true) speed: narration speed multiplier, e.g. 1.0 seed: stock-selection seed for reproducible visuals, e.g. 7

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seedNo
speedNo
titleNo
voiceNofemale_warm
scriptYes
subtitlesNo

TDQS

A5/5.0
Behavior5/5

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

With no annotations, the description carries the full burden. It discloses key behaviors: asynchronous job submission ('Returns a job id'), output specifications (1080p, audio normalized), and cost ('$0.60 per video in USDC on Solana') including the absence of account/API key requirements. This is sufficient for understanding side effects and prerequisites.

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 well-structured: a concise first paragraph covering purpose, workflow, and cost, followed by a clean parameter list. Every sentence carries useful information with no fluff, achieving high information density without being wordy.

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?

Given the tool's complexity (6 params, no output schema, paid async job), the description is remarkably complete. It explains all inputs, the output (job id), the subsequent polling/fetching process, and the cost model, allowing an agent to confidently invoke and handle the result without missing context.

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

Parameters5/5

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

The input schema has no property descriptions (0% coverage), so the description must and does explain every parameter. Each parameter is given a clear one-line explanation ('title: optional intro title shown for ~4s at the top', 'seed: stock-selection seed for reproducible visuals'), adding meaning well beyond the bare schema.

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 clearly states the tool's job: 'Turn a script into a finished 1080p video' with specifics like subtitles and audio normalization. It distinguishes from sibling tools by emphasizing the submission step and its direct outcome, making its role distinct from fetching or listing.

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?

It explicitly says 'Use when you need a publishable video and have only text', providing direct usage context. It also outlines the workflow ('Returns a job id; poll get_job, then fetch_video'), which tells the agent how to integrate with alternatives, effectively guiding tool selection and sequence.

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

Each tool has a distinct role in the video generation workflow: submit creates, get_job polls, fetch_video retrieves the result, list_jobs lists history, and the remaining tools cover voices, payment, service info, and feedback. There is no meaningful overlap between tools.

Naming Consistency4/5

Most tools follow a verb_noun pattern (submit_video_job, get_job, fetch_video, list_jobs, list_voices), but payment_info and service_info use a noun_info pattern. This is a minor deviation; all names are clear, snake_case, and readable.

Tool Count5/5

With 8 tools, the set is well-scoped for a video generation service. It covers job submission, monitoring, retrieval, listing, voice selection, and two informational endpoints, without unnecessary bloat or a feeling of incompleteness.

Completeness4/5

The core lifecycle is covered: submit, poll, fetch, and list jobs, plus listing voices and payment guidance. The only notable gap is the lack of job cancellation or update operations, but agents can work around this since the service is fire-and-forget.

Resources