Skip to main content
Glama
skeetmtp
by skeetmtp

seedance-mcp

An MCP server that lets Claude Code generate video with BytePlus ModelArk Dreamina Seedance 2.5.

Ask Claude Code for a video in plain language; it submits the task to BytePlus, polls until the render finishes, and hands back the video URL with the metadata BytePlus reports.


1. What it does

Six tools over MCP stdio:

Tool

Purpose

seedance_create_video

Submit a generation task. Returns a task ID immediately — generation is asynchronous.

seedance_get_video

One status check for a task; returns the video URL once it succeeds.

seedance_wait_for_video

Poll with backoff until the task succeeds, fails, or times out.

seedance_download_video

Save a finished video to a local file before its 24-hour URL expires.

seedance_cancel_video

Cancel a queued task, or delete a finished task's record.

seedance_list_tasks

List recent tasks, filterable by status and model.

It handles the parts that are easy to get wrong: encoding local images and audio into the Base64 data-URI form the API expects, enforcing the per-model parameter limits before a request is sent, retrying transient failures with backoff, and keeping the API key out of every log line and error message.

Related MCP server: @lweight/xbrush-api-mcp

2. Prerequisites

  • Python 3.11+

  • uvbrew install uv or curl -LsSf https://astral.sh/uv/install.sh | sh

  • Claude Code 2.x

  • A BytePlus ModelArk account with an API key and the Seedance model activated.

3. BytePlus configuration

  1. Create an API key: ModelArk console → API keys.

  2. Activate the model. Seedance 2.5 is not enabled by default. BytePlus requires one of:

    • account balance above USD 30, or

    • an AI Savings Plan at the USD 30 tier or above, or

    • a Seedance resource pack with quota remaining.

    Activate under ModelArk → Model activation → Computer Vision. Without this, task creation fails with an authorization error even though the key itself is valid.

  3. Note your region. The default base URL below is ap-southeast (Singapore). If your account is provisioned elsewhere, set BYTEPLUS_BASE_URL accordingly — a task created in one region is not visible from another.

4. Installation

git clone <this repo> ~/code/seedance-mcp   # or just use the directory you already have
cd ~/code/seedance-mcp
uv sync

Verify:

uv run pytest -q          # 93 tests, all offline against mocked HTTP
uv run ruff check .

5. .env setup

cp .env.example .env

Then fill in one required variable:

BYTEPLUS_API_KEY=your-modelark-api-key

Everything else is optional and already defaulted:

BYTEPLUS_BASE_URL=https://ark.ap-southeast.bytepluses.com/api/v3
SEEDANCE_MODEL_ID=dreamina-seedance-2-5-260628

.env is gitignored. The key is read from the environment only — it is never written to disk by this server, never logged, and is scrubbed from API error messages before they reach Claude.

6. Choosing the Seedance 2.5 model ID

Seedance 2.5 is a shared, universally available model ID — you do not need to create a dedicated endpoint. The default is:

dreamina-seedance-2-5-260628

Note the dreamina- prefix. This is a real inconsistency in BytePlus's naming: the 2.x Dreamina models carry it, while the 1.x IDs do not (seedance-1-5-pro-251215). Copying a 1.x-shaped ID for 2.5 is the most common cause of a "model not found" error.

Confirm the current ID for your account in the ModelArk model list.

If you prefer a dedicated endpoint (for per-endpoint rate limits, prepaid billing, or monitoring), create one in the console and put its endpoint ID in SEEDANCE_MODEL_ID instead:

SEEDANCE_MODEL_ID=ep-20260817120000-abcde
SEEDANCE_MODEL_PROFILE=seedance-2.5

SEEDANCE_MODEL_PROFILE is needed only in that case: an ep-... ID says nothing about which model sits behind it, so without it the server cannot validate parameters locally and will pass everything through to the API for validation instead.

7. Register with Claude Code

From this directory (use the absolute path — Claude Code launches the server from arbitrary working directories):

claude mcp add \
  --transport stdio \
  --scope user \
  byteplus-seedance \
  -- uv --directory /Users/alban/code/seedance-mcp run python -m seedance_mcp

--scope user makes it available in every project. Use --scope project to share it with a repo's collaborators via .mcp.json, or omit --scope for the current project only.

The server reads .env from its own directory, so no -e flags are needed. If you would rather pass the key explicitly:

claude mcp add --scope user byteplus-seedance \
  -e BYTEPLUS_API_KEY=your-key \
  -- uv --directory /Users/alban/code/seedance-mcp run python -m seedance_mcp

8. Verification

claude mcp list

Expect a line like:

byteplus-seedance: uv --directory /Users/alban/code/seedance-mcp run python -m seedance_mcp - ✓ Connected

Then inside Claude Code, /mcp lists the server and its six tools. Ask it:

List my recent Seedance tasks.

That exercises authentication and connectivity without spending generation credits — an empty list is a success. If the key is wrong you get an explicit HTTP 401 message instead.

For an end-to-end check that actually renders a file, use the minimum-cost recipe in §10.

9. Example Claude Code prompts

Generate a 10-second 1080p cinematic video of Tokyo at night using Seedance 2.5.
Use ./assets/reference.png as the visual reference and generate a slow cinematic push-in shot.
Create the video and wait until generation finishes.
Generate a 15-second 9:16 vertical clip of a surfer at sunrise, no audio, and give me the URL.
Use ./assets/first.png as the first frame and ./assets/last.png as the last frame,
6 seconds, and wait for it.
Check the status of task cgt-20260817... and download the video if it's ready.
Download task cgt-20260818061514-8t2lv into ./renders/ and keep the last frame too.
Cancel task cgt-20260817... — I queued the wrong prompt.

10. Cost and timing

Generation is billed per second of output, scaled by resolution and model. The cheapest way to prove the pipeline works is a 4-second 480p clip — 4s is the shortest length any Seedance 2.x model accepts.

Free check, no generation credits spent:

List my recent Seedance tasks.

Cheapest real generation. Seedance 2.0 mini is the least expensive model on the account; during the promotion running to 7 Sep 2026 its 720p output starts around USD 0.03/second, and 480p sits below that:

Using Seedance model seedance-2-0-mini-260615, generate a 4-second 480p video, 16:9, no audio,
prompt: "a red balloon floating up against a blue sky". Then wait for it and give me the URL.

Cheapest test of the Seedance 2.5 default path — worth running separately, since 2.5 is a different model activation and a different price tier:

Generate a 4-second 480p Seedance 2.5 video, 16:9, no audio,
prompt: "a red balloon floating up against a blue sky". Wait for it and give me the URL.

Measured baseline

From one real Seedance 2.5 text-to-video run on 2026-08-18:

Output

Wall-clock

Reported usage

4s · 480p · 16:9 · 24 fps · silent

~105 s

38,830 tokens

That is the floor: the shortest duration at the lowest resolution with no reference media. It also sets expectations for seedance_wait_for_video, whose 900-second default timeout is sized for jobs an order of magnitude heavier than this one.

Scaling from that baseline is extrapolation, not measurement — usage tracks output seconds and pixel count, so a 10-second 1080p clip is roughly 2.5× the seconds and ~5× the pixels, i.e. of order 10× this run. Treat it as a planning estimate and confirm against your own billing.

The duration cost trap

Seedance 2.5 defaults duration to -1, which lets the model pick any length up to 30 seconds. Since billing is per second of output, a request that doesn't state a duration can cost around 7× an intended 4-second test. State the number of seconds explicitly in any cost-sensitive run — the tool passes it straight through, and 4 is the floor.

Two smaller notes: 480p and 720p are excluded from the current 2.5 promotional discount (only 1080p is discounted), so 480p remains cheapest in absolute terms — the discount simply doesn't apply to it. And no audio mainly shortens generation time; nothing in the documentation shows it reduces the price.

11. Troubleshooting

Symptom

Cause and fix

BYTEPLUS_API_KEY is not set

No .env next to the project, or an empty value. The server resolves config on the first tool call, so this appears as a tool error rather than a startup failure.

HTTP 401

Wrong or revoked key, or a key from a different BytePlus account than the one holding the model activation.

HTTP 404 on a task ID

The task was created in a different region, or it is older than 7 days (BytePlus purges task records after 7 days).

Model-not-found on create

SEEDANCE_MODEL_ID is wrong — check the dreamina- prefix — or Seedance 2.5 is not activated on the account (see §3).

HTTP 429

Rate limited. The client already retries with backoff and honours Retry-After; persistent 429s mean your account RPM is exhausted.

Local video files cannot be uploaded

Expected. BytePlus accepts reference video only as a public URL or asset:// ID. Host the file first.

Task fails with InvalidParameter.TaskTypeConstraint

Seedance 2.5 inferred a different task type than your parameters allow. Set omni_reference_task_type explicitly to edit or extend so validation happens at submit time.

video_url returns 403

Output URLs expire 24 hours after completion, and Seedance 2.5 URLs allow at most 100 downloads. Re-generate, or configure BytePlus TOS data subscription for durable storage. Use seedance_download_video to save files inside the window.

File already exists on download

Guard against clobbering a previous render. Pass overwrite: true, or give a different output_path.

Refusing to download from <host>

seedance_download_video only fetches BytePlus-hosted output. Fetch other URLs outside this server.

Server shows as failed in claude mcp list

Run the command by hand — uv --directory /path run python -m seedance_mcp — and read stderr. Usually a stale venv; uv sync fixes it.

12. Supported Seedance 2.5 features

Task types (mutually exclusive — BytePlus rejects mixtures):

  • Text-to-video — prompt only.

  • Image-to-videofirst_frame, optionally plus last_frame. The output starts and ends on exactly those images.

  • Omni reference-to-video — up to 30 reference images, 10 reference videos and 10 audio clips, with audio-only input allowed. Cite assets in the prompt as @Image 1, @Video 2. Covers three sub-tasks: reference-to-video, video editing, and video extension — steer them with omni_reference_task_type.

Output controls

Parameter

Seedance 2.5 values

resolution

480p, 720p (default), 1080p

ratio

16:9, 4:3, 1:1, 3:4, 9:16, 21:9, adaptive (default)

duration

4–30 seconds, or -1 to let the model choose (default)

generate_audio

true (default) — synchronised speech, effects and music

watermark

false (default)

return_last_frame

false (default) — returns the closing frame as PNG to chain clips

omni_reference_task_type

auto, edit, extend

service_tier

default (online) or flex (cheaper offline inference)

Media inputs

Type

Formats

Per-file limit

Local file support

Image

jpeg, png, webp, bmp, tiff, gif, heic, heif

30 MB

✅ inlined as Base64

Audio

wav, mp3

15 MB

✅ inlined as Base64

Video

mp4, mov

200 MB

❌ public URL or asset:// only

Prompts work in English, Spanish, Indonesian, Portuguese, Japanese, Malay, Thai, Arabic, Vietnamese and Korean. Keep them under ~1000 English words.

Saving output. seedance_download_video takes a task ID, looks up the current URL itself, and streams the file to disk. Defaults to ./<task_id>.mp4; pass a file path or an existing directory as output_path. It never overwrites without overwrite: true, cleans up partial files if a download breaks, and can also fetch the closing PNG with include_last_frame when the task was created with return_last_frame. Two deliberate restrictions: downloads go over its own unauthenticated HTTP client, so the ModelArk key is never sent to the storage host, and the URL host must end in .volces.com, .bytepluses.com or .byteplus.com — this is a Seedance output fetcher, not a general-purpose downloader.

The server also targets older models via the model tool argument or SEEDANCE_MODEL_ID — Seedance 2.0 / 2.0 fast / 2.0 mini, 1.5 pro, 1.0 pro and 1.0 pro fast — validating each against its own limits (for example 4K is valid on 2.0 but not on 2.5).

13. Known API limitations

  • Generation is asynchronous. Nothing returns a video synchronously; a 5–10 second clip typically takes a few minutes, longer at 1080p.

  • No settable seed or camera_fixed on Seedance 2.5. The current API reference lists both as input parameters for Seedance 1.5 pro, 1.0 pro and 1.0 pro fast only. This server rejects them for 2.5 with an explicit message rather than silently dropping them. Express camera behaviour in the prompt instead. (Older Seedance 1.x tutorials and third-party examples still show these parameters — they no longer apply to 2.5.)

    Observed in a real 2.5 run: the task response still reports a seed (surfaced as VideoResult.seed, e.g. 80969), because the model picks one internally. So you can see which seed produced a clip, but you cannot ask for it back — 2.5 generations are not reproducible.

  • No frames on Seedance 2.5. Sub-second durations via frame count are a 1.0 pro feature.

  • Local video cannot be uploaded. Images and audio have a Base64 form; video does not.

  • 64 MB request-body ceiling. Inlining several large images will hit it; the server checks before sending and tells you to switch to URLs.

  • Real human faces are restricted. Seedance 2.x rejects reference images and videos containing real human faces unless they are a prior Seedance output from your own account (within 30 days), a preset digital character, or an authorised real-person asset.

  • Only queued tasks can be cancelled. Once a task is running, it runs to completion.

  • Output URLs live 24 hours, with a 100-download cap on Seedance 2.5. Both limits are baked into the signed URL itself — a returned link carries X-Tos-Expires=86400 and X-Tos-Max-Requests=100. There is no re-issue endpoint, and seedance_list_tasks can only hand back a URL that is still inside that window. Use seedance_download_video to save anything worth keeping; once the window closes the only remedy is to generate again.

  • Task records live 7 days.

  • Reference-media duration limits are not checked locally. Per-clip (2–30s) and total (30s) limits for reference video and audio need media probing; the server does not add a decoder dependency for it, so BytePlus enforces those and reports them as task errors.

  • Prices and constraints change. The capability table in src/seedance_mcp/capabilities.py was transcribed from the BytePlus docs on 2026-08-17; re-check it if BytePlus ships a new model revision.

14. Project layout

seedance-mcp/
├── pyproject.toml
├── README.md
├── .env.example
├── .gitignore
├── src/seedance_mcp/
│   ├── __init__.py
│   ├── __main__.py        # stdio entry point
│   ├── server.py          # the six MCP tools
│   ├── client.py          # BytePlus HTTP client: retries, error parsing
│   ├── payload.py         # request building + validation
│   ├── capabilities.py    # per-model limits from the official docs
│   ├── media.py           # local file -> data URI, with validation
│   ├── models.py          # typed request/response models
│   ├── config.py          # environment configuration
│   └── errors.py          # error types + secret redaction
└── tests/

capabilities.py, payload.py and media.py are additions to the layout sketched in the brief: the documented per-model constraint table, the request builder and the media handling each carry real logic and their own tests, and folding them into server.py or models.py would have made both hard to read.

15. Sources

Every API detail above was verified against current official BytePlus documentation:

Available Tools

6 tools
seedance_cancel_videoCancel or delete a Seedance taskA

Cancel a Seedance task that is still queued, or delete the record of one that already finished. BytePlus maps both to a single DELETE call. Only queued tasks can actually be cancelled - a task already running cannot be stopped, and the call will fail. Cancelled tasks are purged after 24 hours.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesTask ID to cancel or delete.

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteYes
task_idYes
cancelledYes

TDQS

A4.3/5.0
Behavior4/5

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

No annotations provided, so description carries the full burden. It discloses the underlying HTTP method (DELETE), the fact that only queued tasks can truly be cancelled, that calls on running tasks fail, and the post-cancellation purge delay. It does not cover idempotency or behavior when task_id does not exist, but the output schema likely handles error responses. Overall, good transparency for a simple cancellation tool.

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?

Three sentences total. First sentence immediately states the dual purpose. Second sentence explains the key behavioral limitation. Third sentence adds lifecycle context. No wasted words, front-loaded with essential information.

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 tool with one required parameter and clear cancellation semantics, the description covers the operation's dual nature, failure cases for running tasks, and post-cancellation cleanup. An output schema exists (though not shown), so return value explanation is not needed. The description is complete for the complexity level.

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?

The input schema has 100% description coverage—task_id is described as 'Task ID to cancel or delete.' The tool description does not add any additional semantics (e.g., format, source, or validation). Since the schema already provides the meaning, the description offers no extra value, meeting the baseline of 3.

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 it cancels queued tasks or deletes finished records, using the verb 'cancel or delete' and the resource 'Seedance task'. It distinguishes between the two states, providing specific scope. The sibling tools (create, get, wait, download, list) further clarify this is the cancellation tool.

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?

Explicitly says when to use: for queued tasks (cancel) or finished ones (delete). Provides a critical caveat that running tasks cannot be stopped and the call will fail. Mentions that cancelled tasks are purged after 24 hours. Lacks explicit alternatives (e.g., no mention of what to do if you need to stop a running task), but the tool set doesn't include such an option, so the guidance is adequate.

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

seedance_create_videoCreate a Seedance video generation taskA

Start a Seedance video generation task on BytePlus ModelArk and return its task ID. Generation is ASYNCHRONOUS and takes minutes: this tool returns immediately without a video. Follow it with seedance_wait_for_video (blocks until the video is ready - use this when the user just wants the video) or seedance_get_video (single status check).

Choose exactly ONE input shape; BytePlus rejects mixtures:

  1. text-to-video: prompt only.

  2. image-to-video: first_frame (+ optional last_frame) - the output starts (and ends) on those exact frames.

  3. omni reference-to-video: image_references / video_references / audio_references - the model borrows subjects, style, motion or sound from them. Seedance 2.5 accepts up to 30 images, 10 videos and 10 audio clips, and can run on audio alone. Refer to them in the prompt as '@Image 1', '@Video 2' etc. first_frame/last_frame cannot be combined with the *_references parameters.

Media may be a local file path, a public https:// URL, or an asset://. Local images (jpeg, png, webp, bmp, tiff, gif, heic, heif; max 30 MB) and local audio (wav, mp3; max 15 MB) are inlined automatically. Local VIDEO files cannot be uploaded - BytePlus takes reference video only as a public URL, so host it first.

Seedance 2.5 supports resolution 480p/720p/1080p, ratio 16:9/4:3/1:1/3:4/9:16/21:9/adaptive, and duration 4-30 seconds (or -1 to let the model choose). It does NOT support seed or camera_fixed - describe camera moves in the prompt instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNoRandomness seed, -1 to 2147483647. Supported by Seedance 1.5 pro and 1.0 pro only - NOT by Seedance 2.5.
modelNoOverride the configured model ID or endpoint ID for this call, e.g. 'dreamina-seedance-2-5-260628'. Omit to use the server default.
ratioNoAspect ratio: '16:9', '4:3', '1:1', '3:4', '9:16', '21:9' or 'adaptive'. Default 'adaptive'. Must be 'adaptive' for first_frame/last_frame tasks and for video edit/extend tasks.
promptNoWhat to generate: subject, action, setting, camera movement, lighting, mood. Put spoken dialogue in double quotes to drive the generated audio. Keep it under ~1000 English words. Required unless media references are supplied.
durationNoOutput length in seconds. Seedance 2.5: 4-30, or -1 to let the model pick. Omit to use the model default.
watermarkNoAdd an 'AI Generated' watermark in the lower-right corner.
last_frameNoImage the video must end on. Requires first_frame.
resolutionNo'480p', '720p' or '1080p' on Seedance 2.5. Default 720p.
first_frameNoImage the video must start on (local path, https:// URL, or asset://<ID>). Mutually exclusive with the *_references parameters.
callback_urlNoHTTPS endpoint BytePlus POSTs to when the task status changes.
camera_fixedNoLock the camera. Supported by Seedance 1.5 pro and 1.0 pro only - NOT by Seedance 2.5, where camera behaviour belongs in the prompt.
service_tierNo'default' for online inference, or 'flex' for cheaper offline runs.
generate_audioNoWhether the output carries synchronised sound (voices, effects, music). Defaults to true on Seedance 2.5; pass false for a silent video.
audio_referencesNoReference audio (wav/mp3) to drive speech, music or timing. Seedance 2.5: up to 10, each 2-30s, 30s total, and audio-only input is allowed.
image_referencesNoReference images for an omni reference-to-video task (subject, character or style guidance). Seedance 2.5: up to 30. Cite them in the prompt as '@Image 1'.
video_referencesNoReference videos, as public https:// URLs or asset://<ID> only (local video files cannot be uploaded). Seedance 2.5: up to 10, each 2-30s, 30s total. Cite them in the prompt as '@Video 1'.
return_last_frameNoAlso return the final frame as a PNG, so it can seed the next clip's first_frame for a continuous sequence.
omni_reference_task_typeNoSeedance 2.5 only, and only with reference media. 'edit' to modify a reference video (requires ratio 'adaptive' and duration -1), 'extend' to continue one (requires ratio 'adaptive'), or 'auto'. Setting it moves validation to submit time instead of failing asynchronously mid-generation.

Output Schema

ParametersJSON Schema
NameRequiredDescription
modelYes
statusYesTask state at submission time; always pending server-side.
requestYes
task_idYes
next_stepYes

TDQS

A4.6/5.0
Behavior4/5

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

Without any annotations provided, the description carries full burden and does well: declares asynchronous gen, delays minutes, returns task ID immediately. It explains that BytePlus rejects mixed input shapes, details media upload rules (local images inlined, local videos not supported), and notes model-specific behaviors (Seedance 2.5 doesn't support seed/camera_fixed). Minor gap: doesn't describe error behavior if a reference is invalid.

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?

Description is well-structured with clear sections: async behavior first, then three input shapes, then media constraints, then parameter notes. It front-loads the most critical info (async return, sibling tool guidance). It is somewhat long but every sentence earns its place for a complex tool with 18 parameters. Could be slightly tighter by combining repeated mentions of model version constraints.

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 high-complexity tool with 18 parameters and no annotations, the description covers all essential aspects: the three input shapes and mutual exclusivity, the async behavior, sibling tool workflow, media upload rules per type, model-specific limitations (Seedance 2.5 param constraints, max counts), citation syntax, and special parameters (return_last_frame chaining). The output schema exists, so return values are covered separately.

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 100% so baseline is 3; the description adds significant value by grouping parameters into three mutually exclusive shapes, explaining relationships (first_frame mutually exclusive with *_references), detailing citation syntax (@Image 1, @Video 2), specifying upload constraints per parameter type, and clarifying model-specific constraints (seed, camera_fixed not for 2.5). Some schema descriptions already include individual parameter details, but the description's structural insight exceeds schema alone.

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 it starts a Seedance video generation task, returns a task ID, and explicitly distinguishes the asynchronous nature from sibling tools like seedance_wait_for_video. It precisely describes three input shapes (text-to-video, image-to-video, omni reference-to-video) with exact parameter combinations, making it unambiguous what the tool does.

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 provides explicit guidance on when to use this tool vs. alternatives: states it is asynchronous and returns immediately, then instructs agents to follow with seedance_wait_for_video (when user wants video) or seedance_get_video (single check). It also explains that media fields have different constraints (local images vs. public URLs for videos), which directly affects tool selection and parameter setup.

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

seedance_download_videoDownload a finished Seedance videoA

Save a finished Seedance video to a local file. Use this whenever the user wants to keep the video rather than just see a link: output URLs expire 24 hours after the task completes and allow only 100 downloads, and BytePlus cannot re-issue them. Pass the task_id - the tool looks up the current URL itself, so it works on any task that succeeded within the last 24 hours. The task must be in 'succeeded' state. Without output_path the file is written to the current directory as .mp4. An existing file is never overwritten unless overwrite is true. Set include_last_frame to also save the closing PNG, which is only available if the task was created with return_last_frame.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesID of a succeeded task, e.g. 'cgt-20260818061514-8t2lv'.
overwriteNoReplace the file if it already exists.
output_pathNoWhere to save it: a file path, or an existing directory to save <task_id>.mp4 inside. Defaults to the current directory.
include_last_frameNoAlso save the last-frame PNG, if the task was created with return_last_frame.

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteNo
sourceYes
size_mbYes
task_idNo
file_pathYesAbsolute path of the saved video.
resolutionNo
bytes_writtenYes
last_frame_pathNo
duration_secondsNo

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the burden. It discloses critical behaviors: output URLs expire after 24 hours and allow only 100 downloads (no reissue), the tool looks up the current URL itself, file is written to current directory if no path given, existing files are never overwritten unless overwrite=true, and include_last_frame requires the task to have been created with return_last_frame.

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 about 100 words, well-structured with the primary purpose first, followed by usage context and parameter details. Every sentence adds value, no redundancy or 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?

Given the 4 parameters and full schema coverage, the description is complete. It explains prerequisites (task must be succeeded, within 24h), file handling rules, optional behavior (include_last_frame condition), and the self-service nature of URL resolution. An output schema exists but the description correctly focuses on usage context rather than return format.

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 description coverage is 100%, giving a baseline of 3. The description adds value beyond the schema by explaining that output_path defaults to current directory for <task_id>.mp4, that existing files are never overwritten without explicit overwrite=true, and that include_last_frame requires the original task to have return_last_frame. These details clarify default behavior and preconditions not obvious from parameter descriptions alone.

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 saves a finished Seedance video to a local file, with the specific verb 'Save' and resource 'finished Seedance video'. It distinguishes from siblings like seedance_get_video (just view link) by explaining when to use it for permanent storage rather than just seeing a link.

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 explicitly says to use this when the user wants to keep the video rather than just a link, and mentions URL expiration and download limits. It also states the task must be in 'succeeded' state. While it doesn't explicitly name alternative tools, the context of sibling names and the 'use this whenever' phrasing provides clear guidance.

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

seedance_get_videoCheck a Seedance taskA

Check a Seedance generation task once and return its current state. Use this for a quick status poll; if the user is waiting for the finished video, use seedance_wait_for_video instead of calling this in a loop. Status is one of queued, running, succeeded, failed, cancelled, expired. On success the result carries video_url (valid 24 hours), plus the resolution, aspect ratio, duration and frame rate BytePlus actually produced. On failure it carries error_code and error_message. Task records are kept for 7 days.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesTask ID from seedance_create_video, e.g. 'cgt-20260817...'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
fpsNo
noteNo
seedNo
modelNo
pollsNo
ratioNo
framesNo
statusYes
task_idYes
video_urlNoValid for 24 hours; Seedance 2.5 URLs allow 100 downloads.
created_atNo
error_codeNo
resolutionNo
updated_atNo
is_terminalYes
total_tokensNo
error_messageNo
generate_audioNo
last_frame_urlNo
waited_secondsNo
duration_secondsNo

TDQS

A4.7/5.0
Behavior4/5

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

Although no annotations are provided, the description fully discloses the tool's behavior: it performs a single check, returns current state, and lists all possible statuses. It details the result structure (on success: video_url with 24h validity, resolution, aspect ratio, duration, frame rate; on failure: error_code and error_message). It also mentions task retention policy (7 days). The only minor gap is no explicit mention of whether it's a mutation or read-only operation, but the context strongly implies a safe read.

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 three sentences, each earning its place: the first states the core purpose, the second provides usage guidance and an alternative, and the third details the response format and lifecycle. No fluff, perfectly front-loaded.

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 low complexity (1 parameter, all required, no enums, 100% schema coverage), the tool is simple. The description covers the input (task_id), behavior (single poll, no looping), output (with detailed success/failure fields, plus video URL validity), and retention policy. An output schema exists, but the description still summarizes the key fields, which is helpful. No gaps remain for an agent to misinterpret.

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 description coverage is 100% (the only parameter task_id has a clear description in the schema). The description adds limited additional semantic value beyond the schema, as the schema already explains it's the task ID from seedance_create_video with an example format. However, the description could have elaborated on how to obtain the task_id, but it's mostly sufficient.

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 'Check a Seedance generation task once and return its current state.' It specifies the verb (check), resource (Seedance generation task), and action scope (once). The tool is well-differentiated from siblings like seedance_wait_for_video, which is explicitly mentioned as the alternative for polling.

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 explicitly tells when to use this tool ('quick status poll') and when not to ('if the user is waiting for the finished video, use seedance_wait_for_video instead of calling this in a loop'). It provides clear guidance on avoiding loops, which is critical for agent behavior.

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

seedance_list_tasksList recent Seedance tasksA

List recent Seedance generation tasks for this account, newest first, optionally filtered by status or model. Useful to recover a task ID that was lost, to check what is still queued, or to re-fetch a video URL for a task that finished within the last 24 hours. BytePlus keeps task records for 7 days.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelNoFilter by model ID or endpoint ID.
statusNoFilter by state: queued, running, succeeded, failed, cancelled or expired.
page_numNo1-based page number.
page_sizeNoResults per page.

Output Schema

ParametersJSON Schema
NameRequiredDescription
tasksYes
totalNo
page_numYes
page_sizeYes

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It clearly states the tool is read-only (listing tasks), notes the data retention period (7 days), and explains that finished tasks' video URLs are only fetchable within 24 hours. The only gap is that it doesn't explicitly mention it's non-destructive, but the listing action implies this.

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 three sentences long and front-loaded with the core purpose. The first sentence states action, scope, ordering, and optional filters. The second provides concrete use cases. The third covers data retention. Every sentence serves a distinct informative purpose with no repetition or 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?

Given the tool has no required parameters, a fully described schema (4 params, 100% coverage), an output schema (not shown but present), and clear behavioral context (retention, ordering, use cases), the description leaves no critical gaps. It is complete for an agent to decide when and how to invoke the tool.

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 100% and each parameter's description is clear (model ID/endpoint ID filtering, status enum, page number/page size with bounds). The description adds context by noting common use cases (filter by status, model) but does not elaborate beyond what the schema provides. Since coverage is high, baseline 3 is appropriate, and the additional context bumps it to 4.

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 specifies the action ('List recent Seedance generation tasks'), the scope ('for this account'), ordering ('newest first'), and optional filtering by status or model. It also explicitly distinguishes the tool from siblings like seedance_create_video or seedance_get_video by focusing on listing tasks rather than creating or retrieving individual videos.

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 provides explicit guidance on when to use this tool: to recover a lost task ID, check queued tasks, or re-fetch a video URL within 24 hours. It also mentions the retention policy (7 days), setting clear boundaries on expected results. No sibling tool duplicates this list behavior, so exclusion criteria are implied.

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

seedance_wait_for_videoWait for a Seedance video to finishA

Poll a Seedance task until it succeeds, fails, or the timeout elapses, then return the final result including the video URL. Call this right after seedance_create_video whenever the user wants the finished video rather than a task ID. Polling backs off automatically. A 5-10 second clip usually lands within a few minutes; long or 1080p jobs take longer, so raise timeout_seconds for those. A timeout does not cancel anything - the task keeps running and can be waited on again.

ParametersJSON Schema
NameRequiredDescriptionDefault
task_idYesTask ID from seedance_create_video.
timeout_secondsNoGive up after this many seconds. Default 900 (15 minutes).
raise_on_failureNoRaise an error when the task ends in failed/cancelled/expired. Set false to get the failure details as a normal result instead.
poll_interval_secondsNoInitial delay between checks; it backs off from here.

Output Schema

ParametersJSON Schema
NameRequiredDescription
fpsNo
noteNo
seedNo
modelNo
pollsNo
ratioNo
framesNo
statusYes
task_idYes
video_urlNoValid for 24 hours; Seedance 2.5 URLs allow 100 downloads.
created_atNo
error_codeNo
resolutionNo
updated_atNo
is_terminalYes
total_tokensNo
error_messageNo
generate_audioNo
last_frame_urlNo
waited_secondsNo
duration_secondsNo

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It covers key behaviors: polling with automatic backoff, timeout behavior (doesn't cancel), typical time estimates, and return of final result including video URL. It does not mention rate limits or auth requirements, but for a polling tool this is reasonable. The description adds value beyond what structured metadata could provide.

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 three sentences long, each earning its place: the first states the core action, the second specifies when to use it, and the third provides critical usage guidance. It is front-loaded with the most important information and contains no filler or redundant phrases.

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?

The description covers the main purpose, usage context, timeout behavior, and auto-backoff. An output schema exists, so return value details are handled there. However, it does not explicitly differentiate from 'seedance_get_video' (if that tool exists for non-polling status checks). Given the tool's polling nature and the presence of other sibling tools, the description is nearly complete.

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?

The input schema has 100% description coverage, so each parameter already has a clear explanation. The description adds some context (e.g., 'task ID from seedance_create_video', timing guidance for timeout_seconds) but does not significantly enhance understanding of parameters beyond what the schema provides. Baseline of 3 is appropriate since the schema does most of the work.

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 that the tool polls a Seedance task until completion or timeout and returns the final result including the video URL. It explicitly differentiates from siblings by specifying when to call it: 'right after seedance_create_video whenever the user wants the finished video rather than a task ID.' The title also reinforces the purpose.

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 provides explicit guidance on when to use the tool ('Call this right after seedance_create_video...') and includes practical advice about adjusting timeout for longer jobs. It also clarifies that a timeout does not cancel the task and that the task can be waited on again. However, it does not explicitly state when not to use it or mention alternative sibling tools for different use cases.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 6 tool updatesv0.1.0
    • First observedseedance_cancel_video
    • First observedseedance_create_video
    • First observedseedance_download_video
    • First observedseedance_get_video
    • First observedseedance_list_tasks
    • First observedseedance_wait_for_video

TDQS

A4.6/5.0

Scored across 6 tools

Disambiguation5/5

Each tool serves a distinct purpose: creating, checking status, waiting, downloading, canceling, and listing tasks. There is no overlap, and the descriptions clearly differentiate their use cases.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern prefixed with 'seedance_': create_video, get_video, wait_for_video, download_video, cancel_video, list_tasks. No mixing of conventions.

Tool Count5/5

With 6 tools, the set is well-scoped for a video generation service. It covers the necessary operations without being too sparse or bloated.

Completeness5/5

The tool surface covers the full lifecycle: creation, monitoring (with two convenient patterns), output retrieval, cancellation/deletion, and history listing. No obvious gaps for the intended domain.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers