video-editor-mcp
An MCP server that provides video editing tools via ffmpeg, enabling tasks like trimming, merging, adding overlays, and format conversion.
README
video-editor-mcp
An MCP (Model Context Protocol) server that gives Claude (or any MCP-compatible
client) real video-editing tools, powered by ffmpeg. Once connected, you can
ask Claude things like "trim intro.mp4 to the first 10 seconds, add my logo
in the corner, and export it as a GIF" and it will call these tools directly.
Requirements
- Node.js 18+
- ffmpeg and ffprobe installed and available on your system
PATH- macOS:
brew install ffmpeg - Ubuntu/Debian:
sudo apt install ffmpeg - Windows: ffmpeg.org/download.html, then add it to PATH
- macOS:
Install
cd video-editor-mcp
npm install
Configure where your videos live
Every tool takes file paths. Relative paths are resolved against the
MEDIA_DIR environment variable (so Claude doesn't need to know your full
filesystem layout) — set it to the folder containing the videos you want to
edit. Absolute paths are always used as-is. If MEDIA_DIR isn't set, it
defaults to the directory you launch the server from.
Connect it to an MCP client
This is a standard MCP server using the stdio transport, so any MCP-compatible client/host can spawn and talk to it. The host just needs to launch this process and communicate over stdin/stdout:
- Command:
node - Args:
["/absolute/path/to/video-editor-mcp/src/index.js"] - Env:
MEDIA_DIR=/absolute/path/to/your/videos
How you wire that up depends on your host/client's own configuration format
(most MCP-aware hosts use a command + args + env shape similar to the
above).
Tools exposed
| Tool | What it does |
|---|---|
get_media_info |
Duration, resolution, codecs, fps, bitrate, file size |
trim_video |
Cut a clip by start time + end time/duration |
merge_videos |
Concatenate multiple clips into one (auto-normalizes resolution) |
convert_format |
Change container/codec (mp4, mov, webm, mp3, etc.) |
extract_audio |
Pull the audio track out as an MP3 |
resize_video |
Scale to a target width/height |
crop_video |
Crop to a rectangular region |
rotate_video |
Rotate 90/180/270° and/or flip horizontally/vertically |
change_speed |
Speed up or slow down (pitch-corrected audio) |
adjust_volume |
Raise/lower volume, or mute |
extract_frame |
Grab a still frame at a timestamp |
add_text_overlay |
Burn in a caption/title, optionally timed |
add_watermark |
Overlay a logo image at a chosen corner |
add_fade |
Fade in/out (video, audio, or both) |
compress_video |
Re-encode at a target quality (CRF) to shrink file size |
generate_gif |
Convert a video segment into an animated GIF |
Each tool returns the resulting file's path and size, so Claude can chain operations (e.g. trim → add watermark → compress) by feeding one tool's output into the next tool's input.
Testing without Claude
Run the unit tests, which generate a synthetic test video with ffmpeg and exercise every operation:
npm test
Run a full protocol-level test (spins up the server and a real MCP client, lists tools, and calls a couple of them):
node test/e2e-client.js
(The e2e test expects npm test to have been run first so test/tmp/v1.mp4
exists — or generate your own test clip there.)
Notes & limitations
- All operations re-encode by default for correctness (frame-accurate trims,
mixed-codec merges, etc.) rather than using fast
-c copycuts, so they're not the fastest possible, but they're reliable across arbitrary inputs. - This server runs entirely on your local machine and only touches files you point it at — no video data is uploaded anywhere.
- There's no built-in sandboxing beyond the
MEDIA_DIRconvenience for relative paths; since the server has the same filesystem permissions as whatever process launches it, only connect it to clients you trust.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.