You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
bitscorp-mcp / mcp-ffmpeg Public
6 stars
1 fork
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
oivoodoo
fix typo
Mar 16, 2025
994268c
· Mar 16, 2025
History
-------
19 Commits
| | |
| dist | | dist | 1.0.5 | Mar 13, 2025 |
| src | | src | change mcp server | Mar 13, 2025 |
| .gitignore | | .gitignore | add dist | Mar 13, 2025 |
| Dockerfile | | Dockerfile | Merge branch 'main' into smithery/config-cgca | Mar 14, 2025 |
| README.md | | README.md | fix typo | Mar 16, 2025 |
| eslint.config.js | | eslint.config.js | change mcp server | Mar 13, 2025 |
| package-lock.json | | package-lock.json | fix typo | Mar 16, 2025 |
| package.json | | package.json | updated | Mar 14, 2025 |
| smithery.yaml | | smithery.yaml | Add Smithery configuration | Mar 14, 2025 |
| tsconfig.json | | tsconfig.json | change mcp server | Mar 13, 2025 |
| View all files | | |
A Node.js server that uses FFmpeg to manipulate video files. This server provides APIs to:
Before running this application, you need to have the following installed:
brew install ffmpeg
sudo apt update
sudo apt install ffmpeg
Download FFmpeg from the official website
Extract the files to a folder (e.g., C:\ffmpeg
)
bin
folder to your PATH environment variablegit clone https://github.com/bitscorp-mcp/mcp-ffmpeg.git
cd mcp-ffmpeg
npm install
To install mcp-ffmpeg for Claude Desktop automatically via Smithery
:
npx -y @smithery/cli install @bitscorp-mcp/mcp-ffmpeg --client claude
Start the server with:
npm start
For development with auto-restart on file changes:
npm run dev
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
This MCP FFmpeg server can be integrated with Claude Desktop to process videos through natural language requests.
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
To add this server to Claude Desktop, update your Claude Desktop configuration file:
Locate your Claude Desktop config file:
~/.config/claude-desktop/config.json
or ~/Library/Application Support/Claude Desktop/config.json
%APPDATA%\Claude Desktop\config.json
~/.config/claude-desktop/config.json
mcpServers
section:{
"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"\
]
}
}
}
Once configured, you can use prompts like:
Using the ffmpeg MCP server, please resize the video at /path/to/video.mp4 to 720p resolution.
uploads
directoryoutput
directoryMIT
No description, website, or topics provided.
No releases published
No packages published
You can’t perform that action at this time.