Connects Claude to Volcano Engine's Seedance 2.0 model for AI video generation. Exposes text_to_video and image_to_video tools that let you generate 5-15 second clips in 720p or 1080p across different aspect ratios. You can poll task progress with poll_result and check usage stats. The free tier gives you 5 generations per day with your own Volcano Engine API key. Pro users get unlimited generations through a hosted gateway with no API key required. Reach for this when you want to generate video content directly from Claude without leaving your editor or writing integration code yourself.
Public tool metadata for what this MCP can expose to an agent.
seedance_list_modelsList all available Seedance models with their capabilities and pricing. Shows all available model options with their features, strengths, and costs. Use this to understand which model to choose for your video generation. Returns: Table of all models with descriptions, capabili...List all available Seedance models with their capabilities and pricing. Shows all available model options with their features, strengths, and costs. Use this to understand which model to choose for your video generation. Returns: Table of all models with descriptions, capabili...
No parameter schema in public metadata yet.
seedance_list_resolutionsList all available resolutions and aspect ratios for Seedance. Shows all available resolution and aspect ratio options with use cases. Returns: Tables of resolutions and aspect ratios with descriptions.List all available resolutions and aspect ratios for Seedance. Shows all available resolution and aspect ratio options with use cases. Returns: Tables of resolutions and aspect ratios with descriptions.
No parameter schema in public metadata yet.
seedance_list_actionsList all available Seedance API actions and corresponding tools. Reference guide for what each action does and which tool to use. Helpful for understanding the full capabilities of the Seedance MCP. Returns: Categorized list of all actions and their corresponding tools.List all available Seedance API actions and corresponding tools. Reference guide for what each action does and which tool to use. Helpful for understanding the full capabilities of the Seedance MCP. Returns: Categorized list of all actions and their corresponding tools.
No parameter schema in public metadata yet.
seedance_get_taskQuery the status and result of a video generation task. Use this to check if a generation is complete and retrieve the resulting video URLs, thumbnails, and other metadata. Use this when: - You want to check if a generation has completed - You need to retrieve video URLs from...1 paramsQuery the status and result of a video generation task. Use this to check if a generation is complete and retrieve the resulting video URLs, thumbnails, and other metadata. Use this when: - You want to check if a generation has completed - You need to retrieve video URLs from...
task_idstringseedance_get_tasks_batchQuery multiple video generation tasks at once. Efficiently check the status of multiple tasks in a single request. More efficient than calling seedance_get_task multiple times. Use this when: - You have multiple pending generations to check - You want to get status of several...1 paramsQuery multiple video generation tasks at once. Efficiently check the status of multiple tasks in a single request. More efficient than calling seedance_get_task multiple times. Use this when: - You have multiple pending generations to check - You want to get status of several...
task_idsarrayseedance_generate_videoGenerate AI video from a text prompt using ByteDance Seedance. This is the simplest way to create video - just describe what you want and Seedance will generate a high-quality AI video. Use this when: - You want to create a video from a text description - You don't have refere...12 paramsGenerate AI video from a text prompt using ByteDance Seedance. This is the simplest way to create video - just describe what you want and Seedance will generate a high-quality AI video. Use this when: - You want to create a video from a text description - You don't have refere...
seedintegermodelstringdoubao-seedance-1-5-pro-251215 · doubao-seedance-1-0-pro-250528 · doubao-seedance-1-0-pro-fast-251015 · doubao-seedance-1-0-lite-t2v-250428 · doubao-seedance-1-0-lite-i2v-250428default: doubao-seedance-1-0-pro-250528ratiostring16:9 · 9:16 · 1:1 · 4:3 · 3:4 · 21:9default: 16:9promptstringdurationintegerwatermarkbooleanresolutionstring480p · 720p · 1080pdefault: 720pcallback_urlvaluecamera_fixedbooleanservice_tierstringdefault · flexdefault: defaultgenerate_audiobooleanreturn_last_framebooleanseedance_generate_video_from_imageGenerate AI video using reference images with ByteDance Seedance. This allows you to control the video by specifying first frame, last frame, or reference images. Seedance will generate smooth motion based on the inputs. Use this when: - You have a specific image you want to a...13 paramsGenerate AI video using reference images with ByteDance Seedance. This allows you to control the video by specifying first frame, last frame, or reference images. Seedance will generate smooth motion based on the inputs. Use this when: - You have a specific image you want to a...
seedintegermodelstringdoubao-seedance-1-5-pro-251215 · doubao-seedance-1-0-pro-250528 · doubao-seedance-1-0-pro-fast-251015 · doubao-seedance-1-0-lite-t2v-250428 · doubao-seedance-1-0-lite-i2v-250428default: doubao-seedance-1-0-pro-250528ratiostring16:9 · 9:16 · 1:1 · 4:3 · 3:4 · 21:9default: 16:9promptstringdurationintegerresolutionstring480p · 720p · 1080pdefault: 720pcallback_urlvalueservice_tierstringdefault · flexdefault: defaultgenerate_audiobooleanlast_frame_urlstringfirst_frame_urlstringreturn_last_framebooleanreference_image_urlsarray让 Claude Code 直接生成 AI 视频,底层调用火山引擎 Seedance 2.0 模型。
npm install -g seedance-mcp
使用托管网关,无需自备 API Key:
{
"mcpServers": {
"seedance": {
"command": "node",
"args": ["seedance-mcp"],
"env": {
"LICENSE_KEY": "SLIC-你的Pro License Key"
}
}
}
}
去 火山引擎 ARK 控制台 注册获取 API Key(新用户有免费额度):
{
"mcpServers": {
"seedance": {
"command": "node",
"args": ["seedance-mcp"],
"env": {
"ARK_API_KEY": "你的火山引擎API Key",
"SEEDANCE_MODEL": "doubao-seedance-2-0-260128"
}
}
}
}
在 Claude Code 对话中直接说:
| 等级 | 价格 | 视频生成 | API Key |
|---|---|---|---|
| Free | 免费 | 5 次/天 | 需自备 |
| Pro | ¥105/年 | 无限生成 | 已内置,无需自备 |
Pro 用户 API 调用费用已包含在订阅中,无需额外付费。
| 工具 | 说明 |
|---|---|
text_to_video | 文生视频,支持 5-15s、720p/1080p、16:9/9:16/1:1 |
image_to_video | 图生视频,图片作为首帧或风格参考 |
poll_result | 查询任务进度,自动轮询直到完成 |
get_usage_stats | 查看本月/累计生成统计 |
verify_license | 查看 License 激活状态 |
v1.1.0 起引入 License 系统。Free tier 每天 5 次视频生成。购买 Pro 后获得 License Key,配置到 LICENSE_KEY 环境变量即可无限使用。
YOUR_API_KEY*secretYour API key for the service