Leverages FFmpeg's video processing capabilities to resize videos and extract audio in different formats
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., "@MCP FFmpeg Video Processorresize my video to 720p"
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.
MCP FFmpeg Video Processor
A Node.js server that uses FFmpeg to manipulate video files. This server provides APIs to:
Resize videos to different resolutions (360p, 480p, 720p, 1080p)
Extract audio from videos in various formats (MP3, AAC, WAV, OGG)
Prerequisites
Before running this application, you need to have the following installed:
Node.js (v14 or higher)
FFmpeg - This is required for video processing
Installing FFmpeg
On macOS:
brew install ffmpegOn Ubuntu/Debian:
sudo apt update
sudo apt install ffmpegOn Windows:
Download FFmpeg from the official website
Extract the files to a folder (e.g.,
C:\ffmpeg)Add the
binfolder to your PATH environment variable
Related MCP server: MCP Media Processing Server
Installation
Clone this repository:
git clone https://github.com/bitscorp-mcp/mcp-ffmpeg.git
cd mcp-ffmpegInstall dependencies:
npm installInstalling via Smithery
To install mcp-ffmpeg for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claudeRunning the Server
Start the server with:
npm startFor development with auto-restart on file changes:
npm run devInstalling via Smithery
To install mcp-ffmpeg for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claudeTo install mcp-ffmpeg for Cursor, go to Settings -> Cursor Settings -> Features -> MCP Servers -> + Add
Select Type: command and paste the below, using your API key from Adjust
npx -y @smithery/cli@latest run @bitscorp/mcp-ffmpegUsing with Claude Desktop
This MCP FFmpeg server can be integrated with Claude Desktop to process videos through natural language requests.
Running with npx
You can run the server directly with npx:
npx /path/to/mcp-ffmpegOr if you've published the package to npm:
npx mcp-ffmpegConfiguring Claude Desktop
To add this server to Claude Desktop, update your Claude Desktop configuration file:
Locate your Claude Desktop config file:
macOS:
~/.config/claude-desktop/config.jsonor~/Library/Application Support/Claude Desktop/config.jsonWindows:
%APPDATA%\Claude Desktop\config.jsonLinux:
~/.config/claude-desktop/config.json
Add the FFmpeg MCP server to the
mcpServerssection:
{
"mcpServers": {
"ffmpeg": {
"command": "npx",
"args": [
"--yes",
"/absolute/path/to/mcp-ffmpeg"
]
}
}
}If you've published the package to npm:
{
"mcpServers": {
"ffmpeg": {
"command": "npx",
"args": [
"--yes",
"mcp-ffmpeg"
]
}
}
}Restart Claude Desktop for the changes to take effect.
Example Prompts for Claude
Once configured, you can use prompts like:
Using the ffmpeg MCP server, please resize the video at /path/to/video.mp4 to 720p resolution.Notes
Uploaded videos are stored temporarily in the
uploadsdirectoryProcessed videos and audio files are stored in the
outputdirectoryThe server has a file size limit of 500MB for uploads
License
MIT