ffmpeg-mcp-lite vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
ffmpeg-mcp-lite by kevinwatt | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 24 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | MediaDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
ffmpeg-mcp-lite · Summary
A feature-rich MCP server for video/audio processing using FFmpeg with tools for conversion, compression, trimming, and more.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
ffmpeg-mcp-lite · Use cases
- Automate video editing tasks through natural language commands in AI assistants
- Convert media formats without leaving your development environment
- Extract audio from videos for podcast creation or analysis
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
ffmpeg-mcp-lite · Install
Prerequisites
Install FFmpeg on your system:
| Platform | Command | |----------|---------| | Windows | winget install FFmpeg | | macOS | brew install ffmpeg | | Linux | sudo apt install ffmpeg |
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"ffmpeg": {
"command": "uvx",
"args": ["ffmpeg-mcp-lite"]
}
}
}Or install manually with:
pip install ffmpeg-mcp-liteClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"ffmpeg": {
"command": "uvx",
"args": ["ffmpeg-mcp-lite"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.