Ssemble MCP Server Enables Claude to Generate Short-Form Videos from YouTube

What It Does
The Ssemble MCP server enables Claude (Desktop, Code, or any MCP client) to create short-form videos from YouTube content. You give Claude a YouTube URL, and it generates AI-clipped videos in TikTok/Reels/Shorts format.
Features
- Browse 9+ caption templates
- Access 45+ music tracks
- Use 30+ gameplay overlays
- Choose from 150+ meme hooks
- Each clip gets a viral score, title, description, and download link
- Split-screen gaming overlays
- Animated hook titles
- Custom CTAs
Setup
Add to Claude Desktop configuration:
{
"mcpServers": {
"ssemble": {
"command": "npx",
"args": ["@ssemble/mcp-server"],
"env": {
"SSEMBLE_API_KEY": "your_key_from_app.ssemble.com"
}
}
}
}Or use the hosted endpoint: https://mcp.ssemble.com/mcp
Technical Details
- 9 tools available: create_short, get_status, get_shorts, list_requests, delete_request, list_templates, list_music, list_game_videos, list_meme_hooks
- Handles async video processing (5-30 minutes) with submit → poll → retrieve pattern
- Claude never blocks or hangs during processing
- npm package: https://www.npmjs.com/package/@ssemble/mcp-server
- GitHub repository: https://github.com/ssembleinc/ssemble-mcp-server
📖 Read the full source: r/ClaudeAI
👀 See Also

HomeButler: MCP Server for Managing Homelab Servers from Claude Without API Keys
HomeButler is an MCP server that lets Claude install, monitor, and manage self-hosted apps on homelab servers without requiring API keys. It runs locally, keeps everything on your network, and was built with Claude Code.

Three MCP servers for e-commerce research with Claude: Shopify, Amazon, and Google Maps tools
A developer built three MCP servers for Claude to analyze Shopify stores without API keys, score Amazon product opportunities, and find/scored local business leads from Google Maps. All are available on Apify.

Clooks: A Persistent Hook Runtime for Claude Code
Clooks is a persistent HTTP daemon that handles Claude Code hook dispatch without process spawning, reducing latency from ~34.6ms to ~0.31ms per invocation. It includes automatic migration, LLM handlers with prompt templates, dependency resolution, and plugin packaging.

Beagle SCM: A Source Code Management System That Stores AST Trees
Beagle is an experimental source code management system that stores abstract syntax trees instead of binary blobs, using a CRDT-ish data format called BASON and backing storage with key-value databases like RocksDB.