Skip to main content
Glama

get_generation

Read-onlyIdempotent

Check one generation by id: status ('generating', 'completed', 'failed'), the finished video URL, and credits charged. 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
idYesThe id returned by generate_video.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPoll this with get_generation.
modelNoModel ID, underscored.
titleNo
statusYesgenerating | processing | completed | failed | timeout
video_urlNo
created_atNo
credits_usedYesCharged only on success — a failed generation is 0.
error_messageNo
thumbnail_urlNo

TDQS

A4.2/5.0
Behavior4/5

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

The annotations already mark the operation read-only, idempotent, and non-destructive. The description adds genuinely useful behavioral context beyond annotations: the API key requirement, the exact status vocabulary, and the returned fields (video URL, credits charged). 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences front-load the core purpose and then provide essential auth setup context. The auth instruction is a bit long but is operationally important for the agent, and there is no redundant 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 single-parameter read-only lookup with an output schema present, the description covers what the tool does, what it returns, and the required authorization. An agent has everything needed to invoke it 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%, with the parameter already documented as 'The id returned by generate_video.' The tool description adds no additional parameter-level meaning beyond what the schema provides, so the baseline 3 applies.

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 precise verb ('Check'), a specific resource ('one generation by id'), and the exact data returned: status values, finished video URL, and credits charged. This clearly distinguishes it from list_generations and generate_video.

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 makes clear it is a single-record lookup by id, especially with the schema note that the id comes from generate_video, which implies polling after generation. It does not explicitly name alternatives or state when not to use it, but the context is unambiguous.

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.