mcp-server-chart vs crawlbase-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | crawlbase-mcp by crawlbase | |
|---|---|---|
| Stars | ★ 4,068 | ★ 55 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
crawlbase-mcp · Summary
Crawlbase MCP Server connects AI agents to live web data through structured scraping, JavaScript rendering, and anti-bot protection.
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
crawlbase-mcp · Use cases
- Market research by pulling live data from competitors, news, and reports
- E-commerce monitoring to track products, reviews, and prices in real time
- Autonomous AI agents with access to current web information
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"]
}
}
}crawlbase-mcp · Install
Installation
Claude Desktop
- Open Claude Desktop → Settings → Developer → Edit Config
- Add to
claude_desktop_config.json:
{
"mcpServers": {
"crawlbase": {
"type": "stdio",
"command": "npx",
"args": ["@crawlbase/mcp@latest"],
"env": {
"CRAWLBASE_TOKEN": "your_token_here",
"CRAWLBASE_JS_TOKEN": "your_js_token_here"
}
}
}
}HTTP Mode (for multi-user environments)
git clone https://github.com/crawlbase/crawlbase-mcp.git
cd crawlbase-mcp
npm install
# Start HTTP server
CRAWLBASE_TOKEN=your_token CRAWLBASE_JS_TOKEN=your_js_token npm run start:http