video-editor-mcp
Click on "Install 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., "@video-editor-mcpTrim my video to 30 seconds and convert to GIF"
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.
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
PATHmacOS:
brew install ffmpegUbuntu/Debian:
sudo apt install ffmpegWindows: ffmpeg.org/download.html, then add it to PATH
Related MCP server: ffmpeg-mcp
Install
cd video-editor-mcp
npm installConfigure 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:
nodeArgs:
["/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 |
| Duration, resolution, codecs, fps, bitrate, file size |
| Cut a clip by start time + end time/duration |
| Concatenate multiple clips into one (auto-normalizes resolution) |
| Change container/codec (mp4, mov, webm, mp3, etc.) |
| Pull the audio track out as an MP3 |
| Scale to a target width/height |
| Crop to a rectangular region |
| Rotate 90/180/270° and/or flip horizontally/vertically |
| Speed up or slow down (pitch-corrected audio) |
| Raise/lower volume, or mute |
| Grab a still frame at a timestamp |
| Burn in a caption/title, optionally timed |
| Overlay a logo image at a chosen corner |
| Fade in/out (video, audio, or both) |
| Re-encode at a target quality (CRF) to shrink file size |
| 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 testRun 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.
This server cannot be installed
Maintenance
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/gxtontata/video-editor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server