mcptube vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcptube by 0xchamin | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 104 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 47 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsMediaKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcptube · Summary
MCP server that transforms YouTube videos into a persistent knowledge base with transcripts, vision analysis, and agentic search.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcptube · Use cases
- Researching topics across multiple educational YouTube videos
- Building a personal knowledge base from tutorial content
- Enhancing AI assistants with video-specific context
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
mcptube · Install
pip install mcptubeFor MCP server setup in Claude Desktop:
{
"mcpServers": {
"mcptube": {
"command": "python",
"args": ["-m", "mcptube.mcp_server"],
"env": {}
}
}
}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"]
}
}
}