Seedance MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SEEDANCE_MODEL | No | 模型 ID | Seedance 2.0/uP |
| SEEDANCE_API_KEY | Yes | API Key | |
| SEEDANCE_TIMEOUT | No | HTTP 请求超时(秒) | 60 |
| SEEDANCE_BASE_URL | No | API 基础 URL | https://www.tokease.cn |
| SEEDANCE_TRUST_ENV | No | httpx 是否读取系统代理/证书环境变量 | false |
| SEEDANCE_API_FORMAT | No | openai 或 volcengine | 自动推断 |
| SEEDANCE_DOWNLOAD_DIR | No | 视频下载目录(建议使用绝对路径) | outputs |
| SEEDANCE_WAIT_TIMEOUT | No | 最大等待超时(秒) | 600 |
| SEEDANCE_POLL_INTERVAL | No | 轮询间隔(秒) | 10 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| seedance_create_videoA | Create a Seedance 2.0 video generation task. Args: prompt: Text description of the video to generate. Required. model: Model ID override (default: SEEDANCE_MODEL env var). ratio: Aspect ratio, e.g. "16:9". resolution: Resolution, e.g. "720p". duration: Video duration in seconds. camera_fixed: Whether to fix camera movement. image_url: Optional reference image URL. callback_url: Optional callback URL for task completion. extra_args: Additional parameters merged into request body. Returns: JSON with ok, task_id and raw API response. |
| seedance_get_taskB | Query a Seedance video generation task status. Args: task_id: The task ID returned by create_video. Returns: JSON with ok, task_id, status, video_url, error, and raw response. |
| seedance_wait_taskA | Poll a Seedance task until completion or timeout. Args: task_id: The task ID to poll. interval_seconds: Polling interval in seconds (default: SEEDANCE_POLL_INTERVAL). timeout_seconds: Maximum wait time in seconds (default: SEEDANCE_WAIT_TIMEOUT). Returns: JSON with ok, task_id, status, video_url, error, and raw response. |
| seedance_download_videoA | Download a generated video to local disk. Args: video_url: URL of the video to download. filename: Optional filename (sanitized, .mp4 enforced). Returns: JSON with ok, local file path and source URL. |
| seedance_get_configA | Return runtime Seedance MCP config diagnostics (API key masked). Use this tool to verify which config the running MCP process is using. Returns base_url, model, api_format, download directories, cwd, and masked api_key. Returns: JSON with runtime config fields. API key is always masked. |
| seedance_create_and_waitA | Create a Seedance video task and wait for completion in one call. Args: prompt: Text description of the video to generate. Required. model: Model ID override. ratio: Aspect ratio, e.g. "16:9". resolution: Resolution, e.g. "720p". duration: Video duration in seconds. camera_fixed: Whether to fix camera movement. image_url: Optional reference image URL. callback_url: Optional callback URL. extra_args: Additional request parameters. interval_seconds: Polling interval (default: SEEDANCE_POLL_INTERVAL). timeout_seconds: Max wait time (default: SEEDANCE_WAIT_TIMEOUT). Returns: JSON with ok, task_id, status, video_url, error, and raw responses. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: creating videos (two variants for combined vs. separate steps), downloading, querying status, waiting for completion, and retrieving configuration. No overlap.
All tools follow a consistent 'seedance_verb_noun' pattern (e.g., seedance_create_video, seedance_download_video), making predictions easy.
6 tools cover the essential workflow for a video generation service without being excessive or insufficient.
Covers the main create-poll-download cycle and config diagnostics. Missing a cancel or list operation, but the core lifecycle is well-supported.