0%

Claude 对接 Seedance MCP

📘 总览指南在 Claude 里用全部 11 个 AceData Cloud MCP →

字节跳动的 Seedance(豆包视频生成) 在国产文生视频里生成速度最快、单位价格最便宜——doubao-seedance-1-0-pro-fast 系列 720p 大约 $0.014/秒,4 秒短片几毛钱。挂上 AceData Cloud 的 Seedance MCP,Claude 一句 prompt,23 秒就把视频丢回来——Claude.ai 网页版直接看 / 下载。

本文是一篇亲手在 Claude.ai 网页版跑通的实测记录:从添加 Connector、OAuth 授权,到一句 prompt 出一段小白猫追红叶的 480p / 4 秒短片,全程截图,复制即可复现。

什么是 MCP?

MCP(Model Context Protocol)是 Anthropic 推出的开放协议,让 Claude 这类模型可以通过标准接口调用外部工具。简单理解:给 Claude 装上插件能力

AceData Cloud 把 Seedance 的核心能力封装成了一个远程 MCP Server,挂上去之后 Claude 就能直接:

  • 文生视频(seedance_generate_video
  • 图生视频(seedance_generate_video_from_image
  • 单 / 批查询任务(seedance_get_taskseedance_get_tasks_batch
  • 列出动作 / 模型 / 分辨率(seedance_list_actionsseedance_list_modelsseedance_list_resolutions

整套接入只需一个 URL,剩下交给 Claude。

在 Claude.ai 网页版添加 Seedance MCP

💡 Claude.ai 网页版接入是 OAuth 直连不需要复制 API Token。你只需要一个能登录 AceData Cloud 的账号(GitHub / Google / 微信均可)。

1. 打开 Connectors 设置

登录 https://claude.ai,点左下角头像 → SettingsCustomizeConnectors,或直接访问 https://claude.ai/customize/connectors

Claude.ai Customize Connectors

⚠️ 旧入口 /settings/connectors 已经迁移到 /customize/connectors,访问旧地址会看到一条 “Connectors have moved to Customize” 的提示。

2. 添加 Seedance MCP Server

点击右上角加号 → Add custom connector,在弹出对话框里填:

字段
Name Seedance(随便取)
URL https://seedance.mcp.acedata.cloud/mcp

Add,Claude 会自动发现 Server 暴露的全部工具。

3. OAuth 授权

Connect → 跳转到 AceData Cloud OAuth 授权页 → 用账号登录、点 Allow 即可。如果还没注册,先去 https://platform.acedata.cloud 注册一下,注册即送免费额度,足够你跑完本文的 demo。

4. 检查工具列表 & 把工具切到 Always allow

授权完成后回到 Claude.ai,点开 Seedance Connector,能看到 7 个工具:seedance_generate_videoseedance_generate_video_from_imageseedance_get_taskseedance_get_tasks_batchseedance_list_actionsseedance_list_modelsseedance_list_resolutions

Seedance Connector 工具列表

⚙️ 强烈建议把右上角的 Needs approval 下拉切换到 Always allow,否则每次工具调用都会弹确认框。生成一段视频通常会触发 3–5 次调用(先 list_models / list_resolutions 选参,再 generate_video,再轮询 get_task),点确认到怀疑人生。

实测:一句英文 Prompt 出 4 秒短片

下面是我真实跑出来的对话

Prompt: Use Seedance to generate one short video. First list models and resolutions, pick the FASTEST/CHEAPEST model (e.g. lite/fast variant) and the LOWEST resolution. Use the SHORTEST duration (4-5 seconds). Subject: a fluffy white kitten chasing a red leaf falling in a sunny garden, side view, simple background.

Claude 收到后做的事情:

  1. 自动调用 seedance_list_models + seedance_list_resolutions 查可用值
  2. 挑出 doubao-seedance-1-0-pro-fast-251015(fast 变体,720p 约 $0.014/秒,全系最便宜)+ 480p + 4 秒 + 16:9 + 24fps
  3. seedance_generate_video 提交任务,再轮询 seedance_get_task
  4. 约 23 秒拿到最终视频
  5. 在聊天框贴出视频链接 + 完整参数说明

下面是聊天最终结果截图:

Claude.ai 中 Seedance 生成结果

实际生成的视频(直接落到 cdn.acedata.cloud,长期可用):

📹 https://cdn.acedata.cloud/4e183464f5.mp4

💡 Seedance fast 变体 + 480p + 4 秒是真正的”白菜价快出片”组合——一杯奶茶钱够出几十条短片,非常适合批量试拍、电商分镜、社媒短视频前期摸索 prompt。

更多玩法(同样一个 Connector)

把 prompt 换成下面这些,Claude 会自动选合适的工具:

图生视频

1
Take this image https://cdn.acedata.cloud/foo.png and animate it with Seedance fast model: slow zoom-in, soft wind, 4 seconds, 480p.

→ Claude 调 seedance_generate_video_from_image,把静态图变成动态短片。

对比 pro vs fast 模型

1
Generate the same prompt "a samurai walking through bamboo forest in mist" with Seedance pro AND fast variants at 720p, 5 seconds, and tell me which one looks better.

→ Claude 调 seedance_list_models 拿到全部变体,分别提交,最后给你对比。

竖屏 + 高分辨率

1
List Seedance resolutions first, then generate a 9:16 vertical 1080p clip of "neon Tokyo street, walking POV, raining" with the pro model.

→ Claude 先 seedance_list_resolutions 拿合法值,再 seedance_generate_video 出竖屏短片。

批量出片

1
Generate 3 Seedance videos in parallel: 1) puppy on beach, 2) hot air balloon at sunrise, 3) coffee being poured. All 480p, 4s, fast model. Then return all three URLs.

→ Claude 并发提交 3 个任务,再用 seedance_get_tasks_batch 一次性查 3 个结果。

常见问题

Q:为什么我点了 Always allow,新工具还是要确认?
A:Always allow 是按工具粒度记忆的。generate_videogenerate_video_from_imageget_tasklist_models 是不同工具,第一次各确认一次即可。

Q:余额不够怎么办?
A:错误信息里会带 insufficient balance。去 https://platform.acedata.cloud/console/coin 充值,支持支付宝 / 微信 / Stripe / USDC。Seedance 是全平台单位价格最便宜的视频模型之一,几块钱够跑很多次。

Q:和 Sora / Veo / Luma 比有什么优势?
A:Seedance 主打便宜 + 快——4 秒短片 20+ 秒出片、单位成本只有同档欧美模型的几分之一,特别适合中文 prompt、本土化运镜风格批量生成场景;Sora 通用、Veo 稳重、Luma 梦幻艺术。

Q:Claude Desktop 和 Claude Code 也能这么用吗?
A:能。详见 Claude Desktop + Seedance MCPClaude Code + Seedance MCP

相关链接