hyper-video-service
MCP server for programmatic video generation. Send a prompt, get an MP4.
README
hyper-video-service
MCP server for programmatic video generation. Send a prompt, get an MP4.
How it works
- Send a video prompt via MCP tool call
- The service generates a HyperFrames composition (HTML + GSAP)
- Renders to MP4 using headless Chrome
- Returns a download URL
Authentication
Set HYPER_VIDEO_API_KEY as an environment variable. All MCP and download endpoints require this key.
If the key is not set, the service runs in open mode (no auth). Always set this in production.
Clients authenticate via:
Authorization: Bearer <key>headerX-API-Key: <key>header?apiKey=<key>query parameter
OpenClaw MCP config
{
"mcpServers": {
"hyper-video": {
"url": "https://hyper-video-service.onrender.com/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
MCP Tools
generate_video
Generate a video from a text prompt.
{
"prompt": "15s product intro for ZenBin, dark theme, showing CAP Protocol headers",
"duration": 15,
"width": 1920,
"height": 1080,
"style": "dark"
}
Returns: { "task_id": "abc123", "status": "generating" }
check_video_status
Check rendering progress.
{ "task_id": "abc123" }
Returns: { "status": "done", "download_url": "/downloads/abc123.mp4", "duration_seconds": 18 }
list_templates
List available video templates.
Returns: { "templates": ["product-intro", "feature-announce", "social-clip"] }
Architecture
Prompt → LLM (composition generation) → HyperFrames (HTML+GSAP) → Chrome (render) → MP4
Interactive diagram: https://zed.zenbin.org/hyper-video-architecture
Deployment
# Deploy to Render
# Set HYPER_VIDEO_API_KEY in Render dashboard
# Or local development
npm install
HYPER_VIDEO_API_KEY=your-secret-key npm run dev
Environment Variables
| Variable | Required | Description |
|---|---|---|
HYPER_VIDEO_API_KEY |
Yes (prod) | API key for authentication |
PORT |
No | Server port (default: 3000) |
NODE_ENV |
No | Set to production for production |
COMPOSITIONS_DIR |
No | Directory for generated HTML (default: ./compositions) |
OUTPUTS_DIR |
No | Directory for rendered MP4s (default: ./outputs) |
TEMPLATES_DIR |
No | Directory for video templates (default: ./templates) |
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.