Using ffmpeg command line to achieve an mcp server, can be very convenient, through the dialogue to achieve the local video search, tailoring, stitching, playback,clip, overlay, concat and other functions
Using ffmpeg command line to achieve an mcp server, can be very convenient, through the dialogue to achieve the local video search, tailoring, stitching, playback and other functions
The server implements the following tools:
find_video_path
The parameters are directory and file name, file name can be complete, or is not suffixed, recursive search in the directory, return the full pathget_video_info
The parameters are video path, return the video info, linkes duration/fps/codec/width/height.clip_video
The parameter is the file path, start time, end time or duration, and returns the trimmed file pathconcat_videos
The parameters are the list of files, the output path, and if the video elements in the list of files, such as width, height, frame rate, etc., are consistent, quick mode synthesis is automatically usedplay_video
Play video/audio with ffplay, support many format, like mov/mp4/avi/mkv/3gp, video_path: video path speed: play rate loop: play countoverlay_video
Two video overlay. scale_video
Video scale. More features are coming
git clone https://github.com/video-creator/ffmpeg-mcp.git
cd ffmpeg-mcp
uv sync
{
"mcpServers": {
"ffmpeg-mcp": {
"autoApprove": [],
"disabled": false,
"timeout": 60,
"command": "uv",
"args": [
"--directory",
"/Users/xxx/Downloads/ffmpeg-mcp",
"run",
"ffmpeg-mcp"
],
"transportType": "stdio"
}
}
}
Note: the value:/Users/XXX/Downloads/ffmpeg
in args need to replace the actual download ffmpeg-mcp directory
Currently, only macos platforms are supported, including ARM64 or x86_64