Server data from the Official MCP Registry
Fireship-style short videos from a topic — Remotion motion graphics, word-timed captions, 1080p.
Fireship-style short videos from a topic — Remotion motion graphics, word-timed captions, 1080p.
Remote endpoints: streamable-http: https://video-render.regiq.in/api/mcp
A well-structured MCP server for video rendering with proper authentication, reasonable permission scoping, and solid code quality. Bearer token authentication is required for all sensitive operations, credits are properly tracked with atomic transactions, and dangerous operations (TTS, rendering, file I/O) are appropriately gated. Minor code quality observations noted but do not constitute security vulnerabilities. Supply chain analysis found 8 known vulnerabilities in dependencies (2 critical, 1 high severity).
7 files analyzed · 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
From the project's GitHub README.
An MCP server that turns a script into a Hyperplexed-style motion-graphics MP4.
Plug the URL into Claude Desktop, Cursor, or any MCP-compatible agent and it
gains a render_video tool.
Hosted for free at video-render.regiq.in (20 renders/day per Google account) or self-host with the Docker Compose below.
Visit https://video-render.regiq.in and sign in with Google.
Copy your API key from the dashboard.
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"video-render": {
"url": "https://video-render.regiq.in/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY_HERE"
}
}
}
}
Restart Claude Desktop. Ask it: "Make a 30-second promo video for X, Fireship style, then hand me the MP4."
The agent will call plan_video_scenes, show you the plan, and — on your
confirmation — call render_video and return a downloadable MP4 URL.
| Tool | Purpose |
|---|---|
plan_video_scenes | Fill a ScenePlan schema (title, targetDurationSec 5–180, script, 1–12 scenes, voice, accent). Returns the plan for user review — no server work. |
render_video | Synthesise narration + render the MP4. Returns { videoUrl, durationSec, sizeBytes }. The URL is valid for 7 days. |
Both tools take the same ScenePlan shape:
{
title: string;
targetDurationSec: number; // 5..180
script: string; // Claude sizes it to ~150 wpm × duration
voice: "male-uk" | "female-uk" | "male-us" | "female-us";
scenes: Array<
| { type: "title"; copy: string; subtitle?: string }
| { type: "code"; language: string; snippet: string; caption?: string; highlightLines?: number[] }
| { type: "stat"; big: string; small: string }
| { type: "cta"; url: string; copy: string }
>;
music?: "upbeat" | "chill" | "tense" | "none";
accent?: string; // hex, defaults to "#0D9488"
}
You'll need:
localhost:3010)Then:
git clone https://github.com/globalion/video-render-mcp
cd video-render-mcp
cp .env.example .env
# edit .env — set NEXTAUTH_SECRET, GOOGLE_CLIENT_ID/SECRET, NEXTAUTH_URL, PUBLIC_BASE_URL
docker compose up -d
Open http://localhost:3010, sign in, copy your key, point Claude Desktop at
http://localhost:3010/api/mcp.
Self-host removes all of these.
MIT.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.