ssemble-mcp-server
Ssemble MCP 服务器
Ssemble AI Clipping 的 MCP 服务器 — 可通过任何 AI 助手创建病毒式短视频。
适用于 Claude Desktop、Claude Code、Cursor、VS Code、Windsurf 以及任何兼容 MCP 的客户端。
功能介绍
此 MCP 服务器允许 AI 助手使用 Ssemble 的 AI 剪辑引擎从 YouTube 视频创建短视频剪辑。AI 可以:
创建短视频:通过 YouTube URL 或上传的文件
Webhook 回调:在处理完成后获取通知(适用于 n8n、Zapier、Make)
浏览资源:字幕模板、背景音乐、游戏画面叠加、模因钩子
跟踪处理进度:检查进度并检索已完成的剪辑
管理请求:列出历史记录、获取结果、删除旧请求
Related MCP server: clipwise-mcp
前置要求
拥有有效订阅的 Ssemble 账户
API 密钥(从 Ssemble 仪表板的“设置”→“API 密钥”中获取)
Node.js >= 18
快速开始
Claude Desktop
编辑您的配置文件:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"ssemble": {
"command": "npx",
"args": ["@ssemble/mcp-server"],
"env": {
"SSEMBLE_API_KEY": "sk_ssemble_your_key_here"
}
}
}
}保存后重启 Claude Desktop。
Claude Code
claude mcp add ssemble -- npx @ssemble/mcp-server然后设置环境变量:
export SSEMBLE_API_KEY="sk_ssemble_your_key_here"Cursor / VS Code / Windsurf
添加到您的 MCP 设置中:
{
"mcpServers": {
"ssemble": {
"command": "npx",
"args": ["@ssemble/mcp-server"],
"env": {
"SSEMBLE_API_KEY": "sk_ssemble_your_key_here"
}
}
}
}可用工具
工具 | 描述 |
| 从视频创建 AI 生成的短剪辑。立即返回请求 ID。 |
| 检查处理进度 (0-100%) 和当前步骤 |
| 检索包含视频 URL、标题、病毒式评分的已完成剪辑 |
| 列出所有带有分页和状态过滤的请求 |
| 永久删除请求及其视频 |
| 浏览字幕样式模板 |
| 浏览背景音乐曲目 |
| 浏览游戏画面叠加视频 |
| 浏览模因钩子吸引力剪辑 |
处理流程说明
视频处理需要 5-30 分钟。提供两种工作流:
选项 A:轮询(手动检查)
create_short— 提交任务并立即返回请求 IDget_status— 随时检查进度(排队中 → 处理中 → 已完成)get_shorts— 完成后检索生成的剪辑
选项 B:Webhook(自动化)
使用
webhookUrl调用create_short— 提交带有回调 URL 的任务处理完成或失败时,API 会向您的 URL 发送包含结果的 HTTP POST 请求
无需轮询 — 非常适合 n8n、Zapier、Make 和自定义后端集成
Webhook 有效载荷示例:
{
"event": "shorts.completed",
"requestId": "507f1f77bcf86cd799439011",
"status": "completed",
"timestamp": "2026-03-30T12:00:00.000Z",
"data": {
"shorts": [
{
"id": "...",
"title": "AI-Generated Title",
"video_url": "https://...",
"duration": 45,
"viral_score": 8.5
}
]
}
}使用示例
从 YouTube 视频创建短视频:
"从 https://youtube.com/watch?v=abc123 创建短视频,使用前 10 分钟的内容并配上轻音乐"
浏览可用资源:
"显示所有字幕模板" / "有哪些背景音乐可用?"
检查进度:
"我的视频请求状态如何?"
获取结果:
"显示请求 507f1f77bcf86cd799439011 的剪辑,按病毒式评分排序"
环境变量
变量 | 必需 | 描述 |
| 是 | 您的 Ssemble API 密钥(以 |
| 否 | 覆盖 API 基础 URL(默认: |
开发
git clone https://gitlab.com/vlogr/ssemble-mcp-server.git
cd ssemble-mcp-server
npm install
SSEMBLE_API_KEY=sk_ssemble_your_key npm start许可证
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceTurn YouTube videos into short clips — from Claude, Cursor, or any AI assistant that supports MCP. You give it a YouTube link. It finds the best moments, reframes them for vertical video, adds subtitles, and gives you download links. All from a chat.61232MIT
- AlicenseAqualityDmaintenanceAI tools for short-form video creators (TikTok, Instagram Reels, YouTube Shorts, Facebook Reels) — viral trend search, video analysis info, content strategy use cases.3331MIT
- FlicenseNot gradedqualityCmaintenanceTurns long-form videos into short-form clips (TikTok/Reels) by reasoning over word-timestamped transcripts, with silence-aware rendering, STT-based validation, and optional reframing/captions.
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to extract YouTube transcripts and repurpose them into social media posts via LLM.MIT
Related MCP Connectors
Turn long videos into AI-curated short clips: caption, reframe, thumbnail, schedule, and publish.
Clip videos into captioned shorts, add captions & schedule posts — from Claude, ChatGPT, Cursor.
Turn any video or livestream into scored, captioned, ready-to-post vertical clips.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ssembleinc/ssemble-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server