Skip to main content
Glama

generate_storyboards

After script review and quote approval, break the episode into a complete set of AI-ready storyboard shots. Generates asynchronously and replaces any existing boards.

Instructions

确认后拆镜:后台跑(分钟级),立即返回 status:generating。用 get_storyboards 轮询。★注意:拆镜会替换整集所有已有分镜(已调好/已出图的全丢、要重花钱重来)。每镜 5-7 秒是对 AI 出视频优化的正常时长,别因「一镜偏长」觉得有问题就重拆。已有分镜时后端会拦,确认重拆才带 confirm_replace=true。★典型耗时 510 分钟(生产实测 78.4 分钟;单次 LLM 调用就可能 3~7 分钟)。60 秒、甚至 3 分钟内查不到分镜都是正常的——用 get_run_status 判断是否还在跑。running:true 就继续等;重发一次等于把整集分镜重来一遍。 ★【改写稿审查硬闸·免费】本步前必须先调 review_script:把返回的 findings 逐条原样告诉客户(每条带 code=问题类型、shots=命中镜号、action=该调哪个工具修),再把 review_token 传进本工具。未审查会被 400 拒。审查后又改了内容 → token 自动失效,复审一次即可(仍免费)。有 error 时默认拦截;客户知情并坚持照现状继续,才带 acknowledge_review:true——带病推进大概率产出废片且照常扣费,不要替客户做这个决定。⚠️ 批量报价确认流程:先调对应的 quote_* 工具,把返回的 estimated_points 原样告诉用户,用户明确同意后,才用返回的 quote_id 调本工具。不要擅自确认。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
quote_idYes来自 quote_storyboards
episode_idYes
review_tokenNo★来自本层 review_* 工具的凭据(受闸项目必填;缺了会 400 并告诉你该调哪个审查工具)
confirm_replaceNo本集已有分镜时必须 true 才重拆(会替换整集所有分镜,已出图白费)
acknowledge_reviewNo审查有 error 时,客户已知情并明确要求照现状继续才传 true(默认拦截)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.57

TDQS

A4.7/5.0
Behavior5/5

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

Since no annotations are provided, the description carries the full burden of behavioral disclosure. It clearly states the operation is destructive (replaces the whole episode's storyboards, loses already-generated images, costs money), asynchronous (returns immediately with status:generating), slow (5–10 minutes typical), and gated by a review token. It also discloses token invalidation, default error blocking, and the customer-decision rule for acknowledge_review.

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?

The description is long but well-organized with ★ markers, bolded warnings, and critical information front-loaded. Each block has a clear purpose, though the repeated waiting-time warnings ('分钟级', '5~10 分钟', '单次 LLM 调用 3~7 分钟', '60 秒…3 分钟内查不到分镜都是正常的') are somewhat redundant and could be condensed without losing the anti-resubmission message.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive, asynchronous tool with no output schema and no annotations, this definition is unusually complete: it covers async return, polling, progress checking, replacement behavior, review gating, and quote confirmation. It falls short only by not explicitly explaining where a run identifier comes from for get_run_status and by leaving episode_id semantics implicit.

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

Parameters4/5

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

Schema coverage is high (80%) and the schema already documents most parameters. The description adds extra meaning for review_token (token invalidates if content changed; can re-review for free) and acknowledge_review (don't decide for the customer), and clarifies that quote_id comes from a quote_* tool after user approval. However, episode_id has no schema description and the tool description only implies its role via '整集'.

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 quickly identifies the action ('确认后拆镜' / storyboard generation), the target resource (整集分镜), and the asynchronous execution model ('后台跑,立即返回 status:generating'). It also differentiates itself from sibling tools by telling the agent to poll with get_storyboards and check run progress with get_run_status.

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?

The description gives explicit required prerequisites and exclusions: do not call before review_script (or you get 400), do not confirm without an approved quote_id, use confirm_replace=true only when knowingly replacing existing storyboards, and do not resubmit while a run is active. It names the relevant sibling tools (review_script, quote_*, get_storyboards, get_run_status) and explains which one to use when.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools