Skip to main content
Glama

get_storyboards

Retrieve an episode's storyboard shots with render status, failure reasons, and retry guidance to decide whether to retry or revise content.

Instructions

读某一集的分镜列表(供审阅/查进度)。含每镜首帧(first_frame_image)与视频(video_url)是否就绪。★每镜还带结构化状态:frame_status/video_status(ready/pending/authorizing/rejected/failed/none/not_required)、★not_required=旁白/片尾卡镜:帧与视频由成片层渲染,本镜不需要生成——数补齐进度时把它当已完成,别重试。fail_reason(sensitive/text_sensitive/copyright/face_mismatch/account_overdue/quota_full/authorizing/insufficient_credits/transient)、retryable(true=可重试;false=改内容换图,重试无效)、fail_hint(人读文案)。照 retryable 判该重试还是该改内容,别解析中文。★first_frame_source/last_frame_source='upload' 表示该帧是外部上传图(绕开了身份锚/画风锚/best-of-N/帧审计整条质量链路)——人物·服装·画风漂移排查先看这些镜;外部图导致的漂移不是平台生成质量问题,修复正路是删掉外部图改走 generate_shot_frame 平台重生。★若某镜带 reopen_pair_id:该镜首尾帧同时生成时只有一侧真的有问题、另一侧是无辜陪拒,原样传给 generate_shot_frame 的 reopen_pair_id 参数可以只重掷有问题的那一侧(省一半算力/费用,不会拿去生成一张这次根本没打算重做的图)。没有这个字段就按 fail_reason/retryable 走常规重试。免费。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
episode_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.57

TDQS

A4.5/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden. It thoroughly discloses the returned status model (frame_status/video_status enums, fail_reason categories, retryable semantics, fail_hint), special cases (not_required, external uploads bypassing the quality chain, reopen_pair_id), and the fact that the call is free. This is far more transparent than a typical getter.

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 dense but well-structured, using ★ markers to separate special cases and front-loading the primary purpose. Every sentence carries operational value—status interpretation, retry policy, external-upload caveat, reopen_pair_id. It is longer than a simple getter, but the complexity of the returned statuses justifies the length.

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?

With no output schema, the description carries the return-value burden and covers the major fields: first_frame_image, video_url, frame_status/video_status, fail_reason, retryable, fail_hint, source markers, and reopen_pair_id. It does not mention pagination or shot-level identifiers, but for the tool's review/progress purpose this is largely complete.

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?

The schema provides episode_id with zero description coverage, and the description compensates by opening with '读某一集的分镜列表', making clear the parameter selects which episode's storyboards to read. It does not explicitly walk through the parameter, but with a single integer ID the semantics are unambiguous.

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 (读/read), resource (某一集的分镜列表/storyboard list of an episode), and purpose (审阅/查进度). The mention of per-shot first frame, video readiness, and structured statuses distinguishes it clearly from sibling tools like get_storyboard_table_spec or review_storyboards.

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?

Provides clear context for when to use it (review/progress checking) and gives substantial operational guidance: treat not_required as complete, decide retry vs content change based on retryable, and route external-upload drift to generate_shot_frame. It does not explicitly name alternative tools, but the usage context is strong and actionable.

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