Remotion Video Generator

Remotion Video Generator

Enables 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.

Category
Visit Server

README

chuk-mcp-remotion

AI-powered video generation with Remotion - A design-system-first approach to creating professional YouTube videos

Python 3.11+ MCP

Overview

chuk-mcp-remotion is an MCP (Model Context Protocol) server that brings the power of Remotion video generation to AI assistants like Claude. It provides a design-system-first approach inspired by shadcn/ui and chuk-mcp-pptx, making it easy for LLMs to create professional, animated videos optimized for YouTube.

Key Features

  • 🎨 Design System Approach: Pre-built themes, components, and tokens optimized for video
  • 🎬 YouTube-Optimized: Components designed for hooks, retention, and engagement
  • 🤖 LLM-Friendly: Discoverable components with detailed schemas and examples
  • ⚡ Powered by Remotion: Generate React-based videos programmatically
  • 🎯 Component Library: 20+ ready-to-use video components (titles, overlays, charts, animations)
  • 🎨 7 Built-in Themes: Tech, Finance, Education, Lifestyle, Gaming, Minimal, Business
  • 📊 Data Visualization: Animated charts and counters for engaging data presentation

Architecture

Design System Structure

Design Tokens → Components → Variants → Themes
  1. Design Tokens: Core design primitives

    • Colors: 7 theme palettes (tech, finance, education, etc.)
    • Typography: Font scales optimized for 720p/1080p/4K
    • Motion: Spring configs, easings, duration presets
  2. Component Registry: 20+ video components

    • Scenes: TitleScene, EndScreen
    • Overlays: LowerThird, TextOverlay, SubscribeButton
    • Charts: LineChart, Counter
    • Animations: Pre-built animation presets
  3. Themes: Complete design systems

    • Tech, Finance, Education, Lifestyle, Gaming, Minimal, Business
    • Each theme combines colors, typography, and motion
  4. Variants: Multiple styles per component (inspired by cva)

    • Example: LowerThird variants: minimal, standard, glass, bold, animated

Installation

Prerequisites

  • Python 3.11+
  • Node.js 18+ (for Remotion)
  • npm or yarn

Install Python Package

# Clone the repository
git clone https://github.com/chrishayuk/chuk-mcp-remotion.git
cd chuk-mcp-remotion

# Install dependencies
pip install -e .

# Or with uv (faster)
uv pip install -e .

Install Remotion (Node.js)

The server generates Remotion projects, so you'll need Remotion installed:

# Remotion will be installed per-project
# The MCP server handles this automatically

Quick Start

1. Start the Server

HTTP Mode (for testing/development):

python -m chuk_mcp_remotion.server http --port 8000

STDIO Mode (for Claude Desktop):

python -m chuk_mcp_remotion.server stdio

2. Explore Available Components

Use the discovery tools to explore what's available:

# List all components
remotion_list_components()

# Search for specific components
remotion_search_components(query="text")

# Get component schema
remotion_get_component_schema(component_name="LowerThird")

# List themes
remotion_list_themes()

3. Explore Design Tokens

# Color palettes
remotion_list_color_tokens()

# Typography system
remotion_list_typography_tokens()

# Motion design
remotion_list_motion_tokens()

Component Catalog

Scenes

TitleScene

Full-screen animated title card

  • Variants: minimal, standard, bold, kinetic
  • Animations: fade_zoom, slide_up, typewriter, blur_in, split
{
    "text": "The Future of AI",
    "subtitle": "Transforming Technology",
    "variant": "bold",
    "animation": "fade_zoom",
    "duration_seconds": 3.0
}

EndScreen

YouTube end screen with CTAs

  • Variants: standard, split, carousel, minimal

Overlays

LowerThird

Name plate overlay (TV-style graphics)

  • Variants: minimal, standard, glass, bold, animated
  • Positions: bottom_left, bottom_center, bottom_right, top_left, top_center
{
    "name": "Dr. Sarah Chen",
    "title": "AI Researcher, Stanford",
    "variant": "glass",
    "position": "bottom_left",
    "start_time": 2.0,
    "duration": 5.0
}

TextOverlay

Animated text for emphasis

  • Styles: emphasis, caption, callout, subtitle, quote
  • Animations: blur_in, slide_up, fade, typewriter, scale_in

SubscribeButton

Animated subscribe button

  • Animations: bounce, glow, pulse, slide, wiggle

Charts & Data

LineChart

Animated line chart

  • Animations: draw, fade_in, scale_in, points_sequence

Counter

Animated number counter for stats

  • Animations: count_up, flip, slot_machine, digital

Themes

Tech Theme

Modern tech aesthetic with blue/cyan palette

  • Use Cases: Tech reviews, coding tutorials, software demos
  • Colors: Primary blue (#0066FF), Accent cyan (#00D9FF)
  • Motion: Smooth spring, ease-out curves

Finance Theme

Professional finance with green/gold

  • Use Cases: Stock analysis, investing advice, business news
  • Colors: Primary green (#00C853), Accent gold (#FFD600)
  • Motion: Snappy, precise animations

Education Theme

Friendly education with purple/orange

  • Use Cases: Educational content, explainers, courses
  • Colors: Primary purple (#7C4DFF), Accent orange (#FF6E40)
  • Motion: Bouncy, playful animations

Gaming Theme

High-energy gaming with neon accents

  • Use Cases: Gaming videos, esports, stream overlays
  • Colors: Neon green (#00E676), Neon purple (#E040FB)
  • Motion: Elastic, energetic animations

Minimal Theme

Clean monochrome aesthetic

  • Use Cases: Professional content, documentaries, interviews
  • Colors: Grayscale with accent colors
  • Motion: Smooth, subtle animations

Lifestyle Theme

Warm lifestyle with coral/pink

  • Use Cases: Vlogs, lifestyle, wellness, travel
  • Colors: Pink (#FF6B9D), Coral (#FFB74D)
  • Motion: Gentle, smooth animations

Business Theme

Professional business with navy/teal

  • Use Cases: Corporate videos, presentations, B2B
  • Colors: Navy (#1565C0), Teal (#00ACC1)
  • Motion: Snappy, professional animations

MCP Tools

Discovery Tools

  • remotion_list_components(category?) - List available components
  • remotion_search_components(query) - Search components
  • remotion_get_component_schema(name) - Get component details
  • remotion_list_themes() - List available themes
  • remotion_get_theme_info(name) - Get theme details

Token Tools

  • remotion_list_color_tokens() - Color palettes
  • remotion_list_typography_tokens() - Typography system
  • remotion_list_motion_tokens() - Motion design

Info Tools

  • remotion_get_info() - Server information and statistics

Configuration for Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "remotion": {
      "command": "python",
      "args": ["-m", "chuk_mcp_remotion.server", "stdio"],
      "env": {
        "MCP_STDIO": "1"
      }
    }
  }
}

Development

Project Structure

chuk-mcp-remotion/
├── src/chuk_mcp_remotion/
│   ├── server.py              # Main MCP server
│   ├── tokens/                # Design tokens
│   │   ├── colors.py         # Color palettes
│   │   ├── typography.py     # Typography system
│   │   └── motion.py         # Motion design
│   ├── registry/             # Component registry
│   │   └── components.py     # Component definitions
│   ├── themes/               # Theme system
│   │   └── youtube_themes.py # YouTube-optimized themes
│   ├── variants/             # Variant system (cva-style)
│   ├── generator/            # TSX generation
│   ├── renderer/             # Remotion rendering
│   └── utils/                # Utilities
├── examples/                 # Example videos
├── tests/                    # Tests
└── remotion-templates/       # Remotion project templates

Running Tests

pytest

Code Quality

# Format code
ruff format .

# Lint
ruff check .

# Type check
mypy src

Roadmap

Phase 1: Foundation (Current)

  • ✅ Design token system (colors, typography, motion)
  • ✅ Component registry with 7+ core components
  • ✅ 7 YouTube-optimized themes
  • ✅ Discovery tools for LLMs

Phase 2: Generation (Next)

  • 🔲 TSX component generation
  • 🔲 Remotion project scaffolding
  • 🔲 Composition builder
  • 🔲 Asset management

Phase 3: Rendering

  • 🔲 Remotion render integration
  • 🔲 Export to MP4/WebM
  • 🔲 Thumbnail generation
  • 🔲 Preview generation

Phase 4: Advanced Features

  • 🔲 Custom theme builder
  • 🔲 Animation timeline editor
  • 🔲 Audio sync
  • 🔲 B-roll suggestions
  • 🔲 Auto-captioning

Inspiration

This project is inspired by:

Contributing

Contributions welcome! Please check out our contributing guidelines.

License

MIT License - see LICENSE for details.

Links

  • GitHub: https://github.com/chrishayuk/chuk-mcp-remotion
  • Documentation: https://github.com/chrishayuk/chuk-mcp-remotion/docs
  • Related Projects:

Author

Chris Hay - @chrishayuk


Built with ❤️ using chuk-mcp-server and Remotion

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured