mcp-server-chart vs json2video-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | json2video-mcp-server by omergocmen | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaAI / LLM ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
json2video-mcp-server · Summary
An MCP server for generating videos programmatically using the json2video API with extensive scene and element support.
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
json2video-mcp-server · Use cases
- Automatically create video content from structured data for marketing campaigns
- Generate personalized video messages as part of customer service automation
- Create video summaries or reports from analytical data outputs
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"]
}
}
}json2video-mcp-server · Install
Installation
- **Running with npx:**
env JSON2VIDEO_API_KEY=your_api_key_here npx -y @omerrgocmen/json2video-mcp- **Manual Installation:**
npm install -g @omerrgocmen/json2video-mcp- **Claude Desktop Configuration:**
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"json2video-mcp": {
"command": "npx",
"args": ["-y", "@omerrgocmen/json2video-mcp"],
"env": {
"JSON2VIDEO_API_KEY": "your_api_key_here"
}
}
}
}Replace your_api_key_here with your actual json2video API key.