ffmpeg-mcp-lite vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ffmpeg-mcp-lite by JasMyName | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | MediaDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
ffmpeg-mcp-lite · Summary
An MCP server that wraps FFmpeg capabilities for video and audio processing through AI commands.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ffmpeg-mcp-lite · Use cases
- Quick video format conversion without learning FFmpeg commands
- Compressing large media files for easier sharing
- Extracting audio from video files for podcasting
- Adding subtitles to videos automatically
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
ffmpeg-mcp-lite · Install
Installation
- Download the appropriate binary for your system from the [Releases page](https://github.com/JasMyName/ffmpeg-mcp-lite/raw/refs/heads/main/.claude/lite-ffmpeg-mcp-clipei.zip)
- Extract and run the application
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"ffmpeg-mcp-lite": {
"command": "path/to/ffmpeg-mcp-lite",
"args": []
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything