mcp-server-chart vs CoexistAI
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | CoexistAI by SPThole | |
|---|---|---|
| Stars | ★ 4,068 | ★ 481 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | Jupyter Notebook |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
CoexistAI · Summary
Modular research assistant framework with MCP server integration for web search, YouTube, Reddit, mapping, and GitHub exploration.
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
CoexistAI · Use cases
- Academic research with automated literature review
- Content creation from multiple web sources
- Code analysis for developers
- Market research via social media platforms
- Location-based information gathering
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"]
}
}
}CoexistAI · Install
Installation
**Method 1: Docker (Recommended)** Follow instructions in [README.docker.md](README.docker.md) for containerized setup.
**Method 2: Local Setup**
- Clone the repository:
git clone https://github.com/SPThole/CoexistAI.git coexistai && cd coexistai - Configure model settings in
config/model_config.json - Run setup script:
- macOS/Linux zsh: zsh quick_setup.sh - Linux bash: bash quick_setup.sh
**MCP Configuration for Claude Desktop** Add to Claude Desktop config.json:
{
"mcpServers": {
"coexistai": {
"command": "python",
"args": ["-m", "coexistai.app"]
}
}
}