FFmpeg MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FFMPEG_PATH | No | Path to ffmpeg binary | ffmpeg |
| FFPROBE_PATH | No | Path to ffprobe binary | ffprobe |
| FFMPEG_OUTPUT_DIR | No | Default output directory | ~/Downloads |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ffmpeg_get_infoA | Get video/audio file metadata using ffprobe. |
| ffmpeg_convertB | Convert video/audio to a different format. |
| ffmpeg_compressA | Compress a video file to reduce file size. |
| ffmpeg_trimA | Trim a video to extract a specific segment. |
| ffmpeg_extract_audioA | Extract audio track from a video file. |
| ffmpeg_mergeA | Concatenate multiple video files into one. |
| ffmpeg_extract_framesA | Extract frames from a video as images. |
| ffmpeg_add_subtitlesA | Add subtitles to a video file (burn-in/hardcode). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a clearly distinct purpose: adding subtitles, compressing, converting, extracting audio, extracting frames, getting info, merging, and trimming. No overlap in functionality.
All tools follow a consistent 'ffmpeg_verb_noun' pattern in snake_case (e.g., ffmpeg_extract_audio, ffmpeg_get_info). No deviations.
With 8 tools, the server covers a broad range of common FFmpeg operations without being excessive. Each tool serves a distinct, useful purpose.
The tool set covers core video/audio operations (info, conversion, compression, trimming, merging, subtitle addition) but lacks advanced features like video effects or audio filters. It is sufficient for typical use cases.