Remotion MCP App
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Remotion MCP AppCreate a 10-second video with a gradient background and animated title"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Remotion MCP App
An MCP App for AI-powered video creation. It combines an MCP server with an interactive widget — the model writes React/Remotion code, the server compiles it in real-time, and a live video player renders the result directly inside the chat.
Unlike a standard MCP server that only returns text, an MCP App bundles a full UI widget alongside its tools. The Remotion Player widget renders inline in any compatible client (ChatGPT, Claude, or custom apps built with mcp-use), giving the model a visual canvas it can iterate on.
Try it now
Connect to the hosted instance:
https://still-feather-l5mwy.run.mcp-use.com/mcpSetup on ChatGPT
Open Settings > Apps and Connectors > Advanced Settings and enable Developer Mode
Go to Connectors > Create, name it "Remotion", paste the URL above
In a new chat, click + > More and select the Remotion connector
Requires ChatGPT Pro, Team, Enterprise, or Edu. Full guide
Setup on Claude
Open Settings > Connectors > Add custom connector
Paste the URL above and save
The Remotion tools will be available in new conversations
Requires Claude Pro, Max, Team, or Enterprise. Full guide
Related MCP server: Clean-Cut-MCP
Demos
ChatGPT + Remotion MCP App

Claude + Remotion MCP App

Click the previews above to watch the full demos.
How it works
This is an MCP App — an MCP server paired with a UI widget. The two pieces work together:
MCP Server -- exposes
create_videotool + rule tools for teaching Remotion patternsWidget -- a Remotion Player that renders inline in the chat, receives compiled bundles from the server
The flow:
The model calls
create_videowith React/Remotion source filesThe server compiles the project with esbuild (sub-second)
The compiled bundle is sent back as
structuredContent, and the widget renders it as a playable videoFor edits, the model calls
create_videoagain with only changed files -- the widget updates in-place with a loading overlay
Model MCP App (Server + Widget)
| |
|-- create_video({files}) ->|
| |-- esbuild compile
|<- structuredContent -----|
| |-- Widget renders video inline
| |
|-- create_video({edits}) ->|
| |-- merge + recompile
| |-- Widget updates in-placeSingle tool design
There is one tool: create_video. It handles both creation and editing. The files parameter is always required -- for edits, only send changed files. The server merges them with the previous session state.
Rule tools
The server includes teaching tools derived from the remotion-best-practices skill that the model can call to learn Remotion patterns:
Tool | Topic |
| Project structure, imports, entry file contract |
|
|
|
|
|
|
|
|
| Typewriter effect, word highlighting |
| Trimming with negative |
Widget (the "App" part)
The Remotion Player widget is what makes this an MCP App rather than a plain MCP server. It runs inside the chat interface and features:
Live video playback with controls
Animated loading state with shader gradient while the model writes code
Editing overlay (blur + gradient) when updating an existing video
Fullscreen mode
Error display with compilation error details
Local development
Prerequisites
Node.js 18+
npm or pnpm
Setup
git clone https://github.com/mcp-use/remotion-mcp-app.git
cd remotion-mcp-app
npm install
npm run devThe server starts at http://localhost:3000/mcp.
Connect a client
Point any MCP client at http://localhost:3000/mcp. For example with mcp-use:
{
"mcpServers": {
"remotion": {
"url": "http://localhost:3000/mcp"
}
}
}Build and deploy
npm run build
npm run deployProject structure
index.ts -- MCP server, tool definitions, handler
utils.ts -- esbuild compilation, session state, response helpers
types.ts -- Shared types (VideoProjectData, VideoMeta)
rules/ -- Remotion teaching content served by rule tools
resources/remotion-player/ -- Widget source (React + Remotion Player)
widget.tsx -- Main widget component
components/
CodeComposition.tsx -- Bundle compiler (eval + runtime shim)Tool schema
create_video({
files: string, // REQUIRED -- JSON string of {path: code}
entryFile?: string, // Default: "/src/Video.tsx"
title?: string,
durationInFrames?: number, // Default: 150
fps?: number, // Default: 30
width?: number, // Default: 1920
height?: number, // Default: 1080
})The files parameter is a JSON string mapping virtual file paths to source code:
{
"/src/Video.tsx": "import {AbsoluteFill} from \"remotion\";\nexport default function Video() { return <AbsoluteFill />; }"
}Session behavior
Each MCP session maintains its own project state
Calling
create_videomerges new files with the previous projectMetadata (title, fps, dimensions) carries forward unless overridden
Sessions are capped at 250 concurrent projects with LRU eviction
License
MIT -- see LICENSE for details.
Note: Remotion is a dependency with its own license. Free for individuals and companies with up to 3 employees. Larger organizations need a company license.
Built with mcp-use and Remotion. Rule tools adapted from the remotion-best-practices skill by Remotion.
This server cannot be deployed
Maintenance
Related MCP Connectors
Create and edit AI videos from chat: plan shots, generate scenes, and export stories and ads.
Build and run visual creative-production workflows from your AI agent.
Generate images, videos, voiceovers, and captions from a chat prompt.
Make animated videos by asking Claude, Cursor or any MCP client. Your AI writes it, we render it.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to create professional YouTube videos using Remotion with a design-system-first approach. Provides 20+ video components, 7 themes, and animated elements optimized for engagement and retention.1522Apache 2.0
- FlicenseNot gradedqualityFmaintenanceEnables users to create professional React-powered videos through Claude Desktop using natural language and the Remotion framework. It provides a persistent studio environment for generating animations, managing video assets, and rendering high-quality content.4-
- FlicenseNot gradedqualityAmaintenanceEnables Claude to control a full-stack video editor by issuing commands to add clips, text, animations, and render MP4 videos, with changes reflected in real-time in the browser UI.-
- FlicenseNot gradedqualityCmaintenanceEnables AI-powered video creation by writing React/Remotion code, compiling it in real-time, and rendering the result as a live video inline in the chat.48-