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 ffmpeg
On Ubuntu/Debian:
sudo apt update
sudo apt install ffmpeg
On 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
Installation
- Clone this repository:
git clone https://github.com/bitscorp-mcp/mcp-ffmpeg.git
cd mcp-ffmpeg
- Install dependencies:
npm install
Installing via Smithery
To install mcp-ffmpeg for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claude
Running the Server
Start the server with:
npm start
For development with auto-restart on file changes:
npm run dev
Installing via Smithery
To install mcp-ffmpeg for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claude
To 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-ffmpeg
Using 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-ffmpeg
Or if you’ve published the package to npm:
npx mcp-ffmpeg
Configuring 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.json - Windows:
%APPDATA%Claude Desktopconfig.json - Linux:
~/.config/claude-desktop/config.json
- macOS:
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
uploadsdirectory - Processed videos and audio files are stored in the
outputdirectory - The server has a file size limit of 500MB for uploads
License
MIT
FFmpeg Video Processor
Project Details
- bitscorp-mcp/mcp-ffmpeg
- mcp-ffmpeg
- Last Updated: 4/20/2025
Recomended MCP Servers
强大的MCP翻译服务器!#AiryLarkMCP 🌐 专为专业翻译人员设计: • 三阶段翻译流程:分析规划、精准翻译、全文审校 • 自动识别专业领域术语 • 提供全面翻译质量评估 • 支持多语种互译 • 保持原文风格与专业性 💯 无缝集成Claude/Cursor等支持MCP的AI助手,让AI翻译达到专业水准!
A Model Context Protocol (MCP) server that integrates with Google's Gemini Pro model, can be used in Claude...
Model Context Protocol (MCP) Server for Graphlit Platform
A simple and clear example for implementation and understanding Anthropic MCP (on AWS Bedrock).
Advanced MCP tool for Perplexity and OpenRouter API integration.
Dify 1.0 Plugin MCP HTTP with SSE or Streamable HTTP transport Tools
A Model Context Protocol server allows Clients to interact with Xero
Control Neovim using Model Context Protocol (MCP) and the official neovim/node-client JavaScript library
Un-official Serper Google search server for Cline and other MCP clients
A TypeScript implementation of a Model Context Protocol (MCP) server that integrates with PiAPI's API. PiAPI makes user...





