mcp-server-chart vs ffmpeg-mcp-lite
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ffmpeg-mcp-lite by kevinwatt | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ffmpeg-mcp-lite · Summary
A feature-rich MCP server for video/audio processing using FFmpeg with tools for conversion, compression, trimming, and more.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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"]
}
}
}