mcp-server-chart vs short-video-maker
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | short-video-maker by gyoridavid | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,129 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
short-video-maker · Summary
An MCP server that creates short-form videos from text using TTS, captions, and background footage.
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
short-video-maker · Use cases
- Content creators automatically generating short-form video content from scripts
- Marketing teams creating social media ads at scale
- Educators creating explainer videos with minimal technical knowledge
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"]
}
}
}short-video-maker · Install
Installation
Docker (Recommended)
docker run -it --rm --name short-video-maker -p 3123:3123 -e LOG_LEVEL=debug -e PEXELS_API_KEY= gyoridavid/short-video-maker:latest-tinyNPM
npm install -g @gyoridavid/short-video-maker
short-video-makerClaude Desktop
Add to Claude Desktop config.json:
{
"mcpServers": {
"short-video-maker": {
"command": "docker",
"args": ["run", "-it", "--rm", "--name", "short-video-maker", "-p", "3123:3123", "-e", "PEXELS_API_KEY=your_key", "gyoridavid/short-video-maker:latest-tiny"]
}
}
}