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
访问服务器

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

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选