Provides AI-agent-driven video editing capabilities by exposing FFmpeg as structured tools, enabling operations like trimming, concatenation, conversion, subtitle burning, and more.
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., "@ffmpeg-mcptrim the first 10 seconds of video.mp4"
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.
ffmpeg-mcp
An MCP (Model Context Protocol) server for AI-agent-driven video editing, powered by FFmpeg.
It exposes FFmpeg as a set of safe, structured tools that an AI agent (Claude Desktop, Claude Code, or any MCP client) can call in natural language — "trim the first 10 seconds", "burn these subtitles in", "transcribe the speech to an SRT", "cut the silent parts".
The server shells out to the installed ffmpeg/ffprobe binaries; there is no FFmpeg source build required.
Requirements
Node.js ≥ 18
FFmpeg + ffprobe on your
PATH(or setFFMPEG_PATH/FFPROBE_PATH). A full build is recommended (libass, NVENC, whisper). Tested with FFmpeg 8.1.
Related MCP server: ffmpeg-mcp
Install & build
npm install
npm run buildTools
Tool | What it does |
| Inspect a file: duration, format, bitrate, streams (codec/resolution/fps/channels). |
| Cut a segment by start + end/duration. Stream-copy (fast) or re-encode (frame-accurate). |
| Join clips. |
| Transcode: format/codec/resolution/fps/bitrate. Supports NVENC ( |
| Pull the audio track out (mp3/aac/wav/flac/opus). |
| Single frame at a time, or frames every N seconds. |
| Hard-burn an |
| Watermark image / picture-in-picture, with position, scale, opacity. |
| Speech → subtitles via FFmpeg's whisper filter (needs a model — see below). |
| Detect silent spans and remove them. |
All tools resolve relative paths against the working directory (or FFMPEG_MCP_WORKDIR), validate that inputs exist, and refuse to overwrite outputs unless you pass overwrite: true.
Configuration (environment variables)
Var | Purpose |
| Full path to the binaries if not on |
| Base directory for resolving relative paths. |
| Default whisper.cpp model file for |
Whisper model (for auto_subtitle)
The whisper filter needs a ggml-*.bin model (not bundled — it's large). Fetch one with the helper script:
npm run download-model # downloads ggml-base.bin into ./models
npm run download-model -- small # or another size: tiny | base | small | medium | largeThen point the server at it via WHISPER_MODEL_PATH (see registration below), or pass model per call.
You can also download manually from
huggingface.co/ggerganov/whisper.cpp.
Register with Claude
Claude Code
claude mcp add ffmpeg -- node /absolute/path/to/ffmpeg-mcp/dist/index.jsClaude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"ffmpeg": {
"command": "node",
"args": ["C:\\absolute\\path\\to\\ffmpeg-mcp\\dist\\index.js"],
"env": {
"WHISPER_MODEL_PATH": "C:\\models\\ggml-base.bin"
}
}
}
}Develop & verify
npm test # unit + real-ffmpeg E2E tests (fixtures generated by ffmpeg)
npm run inspect # launch the MCP Inspector against the serverThe Inspector lets you call each tool interactively and see the JSON results.
Project structure
src/
index.ts # MCP server bootstrap (stdio), tool registration
ffmpeg/
locate.ts # resolve ffmpeg/ffprobe (PATH or env override)
runner.ts # spawn wrapper: args-array (no shell), progress, errors
probe.ts # ffprobe -> structured metadata
lib/
paths.ts # input/output path validation & overwrite policy
schema.ts # shared zod fragments (timecode, resolution)
tools/ # one file per MCP tool + registry (index.ts)
test/ # unit tests + real-ffmpeg E2E (fixtures via lavfi)
scripts/
download-model.mjs # fetch a whisper ggml model into ./modelsDesign notes
No shell interpolation — ffmpeg is always invoked with an argument array, so user-supplied paths cannot inject commands.
Path safety — inputs must exist; outputs never overwrite unless
overwrite: true.No FFmpeg build — the server calls the installed binaries; nothing is compiled.
Contributing
Issues and PRs are welcome. Please run npm run build and npm test before opening a PR.
License
MIT © Sohn EuiJin
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/none-stack-developer/ffmpeg-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
