Skip to main content
Glama

Part of the StudioMeyer MCP Stack โ€” Built in Mallorca ๐ŸŒด ยท โญ if you use it

mcp-video

npm version npm downloads License Last commit GitHub stars

CI License: MIT TypeScript Version npm version Node

8 MCP tools for recording, editing, effects, captions, TTS, and smart screenshots. Built on ffmpeg and Playwright. Works with any MCP client.

Features ยท Quick Start ยท Examples ยท Architecture

A note from us

We have been building tools and systems for ourselves for the past two years. The fact that this repo is small and has few stars is not because it is new. It is because we only just decided to share what we have built. It is not a fresh experiment, it is a long story with a recent commit.

We love building things and sharing them. We do not love social media tactics, growth hacks, or chasing stars and followers. So this repo is small. The code is real, it gets used, issues get answered. Judge for yourself.

If it helps you, sharing, testing, and feedback help us. If it could be better, an issue is more useful. If you build something with it, tell us at hello@studiomeyer.io. That genuinely makes our day.

From a small studio in Palma de Mallorca.

Related MCP server: omni-video-mcp

Features

Tool

Operations

Description

video_record

cinema, scroll, multi-device

Record websites at 60fps with frame-by-frame capture

video_edit

speed, crop, reverse, keyframe, pip

Edit clips with zoom/pan, PiP, slow-mo

video_color

grade, effect, lut, chroma

Color grading, 22 LUT presets, green screen

video_audio

extract, music, ducking, mix, voice

Audio extraction, mixing, 9 voice effects

video_text

subtitles, caption, overlay, animate

Burn SRT, Whisper auto-caption, 15 text animations

video_compose

concat, intro, social, beat-sync, templates

Join clips, social format conversion, beat sync

video_speech

generate, voices, narrated

ElevenLabs/OpenAI TTS, full narrated videos

video_screenshot

capture, detect

Element-aware screenshots, page feature detection

Highlights

  • 60fps frame-by-frame capture โ€” Playwright screenshots every frame, ffmpeg encodes. Zero frame drops.

  • Cinema easing curves โ€” 16 easing options including cinematic and showcase for buttery smooth scrolling.

  • Smart screenshots โ€” Auto-detects 15+ UI elements (chat widgets, pricing sections, booking forms, etc.).

  • Narrated videos โ€” Provide a URL + script, get a professional video with synchronized AI voiceover.

  • 22 LUT presets โ€” Film-grade color grading (teal-orange, noir, vintage, cyberpunk, etc.).

  • Social format export โ€” One-click conversion to Instagram Reel, TikTok, YouTube Short, LinkedIn.

  • Dual transport โ€” Stdio (default) or HTTP mode for persistent microservice deployment.

Prerequisites

  • Node.js >= 18

  • ffmpeg and ffprobe (validated on startup, cross-platform)

  • Playwright browsers (npx playwright install chromium)

  • Optional: ELEVENLABS_API_KEY for ElevenLabs TTS

  • Optional: OPENAI_API_KEY for Whisper captions and OpenAI TTS

If ffmpeg lives outside PATH, set FFMPEG_PATH and FFPROBE_PATH to the absolute binary paths. Both env vars are honoured at startup AND at every runtime spawn site.

Quick Start

With Claude Code (stdio)

{
  "mcpServers": {
    "video": {
      "command": "npx",
      "args": ["-y", "mcp-video"]
    }
  }
}

With npx

npx mcp-video

From source

git clone https://github.com/studiomeyer-io/mcp-video.git
cd mcp-video
npm install
npx playwright install chromium
npm run build
npm start

HTTP mode

# Start as HTTP microservice
npx mcp-video --http --port=9847

# Or via environment variables
MCP_HTTP=1 MCP_PORT=9847 npx mcp-video

Configuration

Environment Variable

Default

Description

VIDEO_OUTPUT_DIR

./output

Directory for generated files

FFMPEG_PATH

โ€”

Absolute path to ffmpeg binary if not on PATH

FFPROBE_PATH

โ€”

Absolute path to ffprobe binary if not on PATH

ELEVENLABS_API_KEY

โ€”

ElevenLabs TTS API key

OPENAI_API_KEY

โ€”

OpenAI API key (Whisper + TTS)

MCP_HTTP

false

Enable HTTP transport

MCP_PORT

9847

HTTP port

MCP_HOST

127.0.0.1

HTTP bind address

MCP_VIDEO_DEBUG

false

Enable debug logging

MCP_VIDEO_ALLOW_INTERNAL

false

Set to 1 to allow URLs that resolve to localhost / private / metadata IPs. Local dev only โ€” leave unset in production (SSRF guard).

What You Can Build

Use Case

Tools Used

Output

Product demo video

video_record โ†’ video_text โ†’ video_audio

60fps website recording + auto-captions + background music

Social media clips

video_record โ†’ video_compose

Record once โ†’ export to Instagram Reel, TikTok, YouTube Short

Narrated explainer

video_speech โ†’ video_color

AI voiceover + cinematic color grade

Before/after comparison

video_screenshot โ†’ video_edit

Smart element screenshots + PiP composition

Automated QA

video_record + video_screenshot

Record user flows + screenshot specific elements

Usage Examples

Record a website

Use video_record with type "cinema" to record https://example.com
with a smooth scroll and hover over the navbar.

Create a narrated explainer video

Use video_speech with type "narrated" to create a narrated video of
https://example.com with these segments:
1. "Welcome to our homepage" โ€” pause on hero section
2. "Check out our features" โ€” scroll to features
3. "Get started today" โ€” hover over CTA button

Auto-caption a video

Use video_text with type "caption" to add auto-generated captions
to /path/to/video.mp4

Export for social media

Use video_compose with type "social-all" to convert
/path/to/video.mp4 to all social media formats.

Smart screenshot

Use video_screenshot with type "capture" to screenshot the chat widget
and pricing section on https://example.com

Architecture

src/
  server.ts            Entry point, 8 consolidated MCP tools
  lib/                 Logger, types, dual transport
  handlers/            Tool handlers (video, editing, post-production, tts, screenshots)
  schemas/             JSON Schema definitions for legacy tool format
  tools/
    engine/            Core engines
      capture.ts       Frame-by-frame recording (Playwright โ†’ PNG โ†’ ffmpeg)
      encoder.ts       ffmpeg encoding pipeline
      scenes.ts        Scene execution (scroll, hover, click, type, wait)
      cursor.ts        Visible cursor simulation
      smart-screenshot.ts  Element-aware screenshot engine
      tts.ts           ElevenLabs + OpenAI TTS with fallback
      narrated-video.ts    Full narration pipeline
      social-format.ts     Social media format conversion
      concat.ts        Video concatenation with transitions
      lut-presets.ts   22 cinema LUT presets
      ...and more

Development

npm run dev          # Start with tsx (hot reload)
npm run typecheck    # Type check
npm test             # Run tests
npm run check        # Verify ffmpeg/ffprobe installed

About StudioMeyer

StudioMeyer is an AI and design studio based in Palma de Mallorca, working with clients worldwide. We build custom websites and AI infrastructure for small and medium businesses. Production stack on Claude Agent SDK, MCP and n8n, with Sentry, Langfuse and LangGraph for observability and an in-house guard layer.

License

MIT

Credits

Built by StudioMeyer. Part of our open-source toolkit for AI-powered content creation.

  • ai-shield โ€” LLM security middleware for TypeScript

  • agent-fleet โ€” Multi-agent orchestration for Claude Code

  • darwin-agents โ€” Self-evolving agent framework

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/studiomeyer-io/mcp-video'

If you have feedback or need assistance with the MCP directory API, please join our Discord server