mcp-server-chart vs mcp-chatbot
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-chatbot by mctrinh | |
|---|---|---|
| Stars | ★ 4,068 | ★ 17 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Toolsresearch |
| Language | TypeScript | Python |
| 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.
mcp-chatbot · Summary
MCP-powered research assistant using Claude 3 for literature search and summarization.
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
mcp-chatbot · Use cases
- Academic literature review and research
- Engineering research paper summarization
- Information extraction from technical papers
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"]
}
}
}mcp-chatbot · Install
# Option 1: Using uv (recommended)
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install -e .
# Option 2: Using pip
pip install -e .
# Run the research server
python research_server.py
# In a new terminal, launch the chatbot CLI
mcp-chatbot runTo integrate with Claude Desktop, add the following to your config.json:
{
"mcpServers": {
"mcp-chatbot": {
"command": "python",
"args": ["-m", "mcp_chatbot.cli"],
"env": {
"ANTHROPIC_MODEL": "claude-3-opus-20240229"
}
}
}
}