Skip to main content
Glama

generate_video

Start generating an AI video on the authenticated account. Returns a job id immediately — poll get_generation until status is 'completed'. Charges credits only on success. Call estimate_credit_cost first if the cost matters. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelNoModel ID from list_models, e.g. "kling_3_0". Omitted means the platform picks a suitable one.
promptYesWhat the video should show. Detailed prompts produce better results.
durationNoLength in seconds. Defaults to 5.
image_urlNoOptional public image URL to animate (image-to-video).
aspect_ratioNoDefaults to 16:9.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPoll this with get_generation.
modelNo
statusYes
next_stepYesWhat to do next, in words, so a model need not infer it.
unlimitedNo
video_urlNoNull until the render finishes.
credits_usedYes0 until the render succeeds — billing is post-deduct.

TDQS

A4.7/5.0
Behavior5/5

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

The description adds substantial behavior beyond annotations: it reveals the async job pattern, the billing condition ('Charges credits only on success'), and the API-key requirement with setup URL. Annotations only state read/write/idempotent/destructive hints; the description enriches the contract with operational and auth details, with no contradiction.

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?

Four sentences, each earning its place: purpose, async workflor, cost guidance, auth requirement. The most important fact leads, and the description is compact with no filler.

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 mutation tool with an output schema and five documented parameters, the description covers everything an agent needs to call it correctly: what happens on invoke, how to track the job, cost implications, and mandatory auth setup. No significant gap.

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 the baseline is 3. The description does not add any parameter-specific semantics beyond what the schema already provides, but it doesn't need to; the schema documents all five parameters adequately.

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-resource pair ('Start generating an AI video') and immediately clarifies the asynchronous contract ('Returns a job id immediately — poll get_generation'). It distinguishes itself from the sibling get_generation by naming the polling relationship, so an agent can tell initiation from status-checking without opening other schemas.

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 routes to alternatives: 'poll get_generation until status is completed' names the follow-up tool, and 'Call estimate_credit_cost first if the cost matters' states the condition for using the cost estimation sibling. This gives clear when-to-use and when-to-use-other guidance.

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
Disambiguation5/5

Each tool targets a clearly distinct resource or action: account balance, article retrieval/search, model listing, cost estimation, generation triggering, and generation status/list. Even the two cost-related tools (list_models and estimate_credit_cost) are distinguishable, since one lists catalog prices and the other estimates a specific batch.

Naming Consistency5/5

All tool names follow the same lowercase snake_case verb_noun pattern: generate_, get_, list_, search_, estimate_. The verbs are consistent and predictable, making it easy to guess the tool name for a desired action.

Tool Count5/5

At 8 tools, the set is well-scoped for a platform covering video generation, account management, and a supporting article/knowledge base. Each tool earns its place and the count feels neither sparse nor bloated.

Completeness4/5

The core generation lifecycle is covered: estimate cost, generate, poll status, list history, and check account balance. Article search and retrieval are also covered, but the platform appears to offer image models based on list_models while only video generation is exposed, leaving an obvious generation gap.