mcp-server-chart vs oxylabs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | oxylabs-mcp by oxylabs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 95 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| 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.
oxylabs-mcp · Summary
Oxylabs MCP server enables AI models to scrape and interact with the real-world web.
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
oxylabs-mcp · Use cases
- AI-powered content extraction from dynamic websites
- Bypassing anti-bot measures to access restricted content
- Structured data collection for AI model training
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"]
}
}
}oxylabs-mcp · Install
Installation
Install with uvx:
# macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Configure with uvx:
{
"mcpServers": {
"oxylabs": {
"command": "uvx",
"args": ["oxylabs-mcp"],
"env": {
"OXYLABS_USERNAME": "OXYLABS_USERNAME",
"OXYLABS_PASSWORD": "OXYLABS_PASSWORD",
"OXYLABS_AI_STUDIO_API_KEY": "OXYLABS_AI_STUDIO_API_KEY"
}
}
}
}Configuration
Configure with Claude Desktop: Navigate to **Claude → Settings → Developer → Edit Config** and add the configuration above to the claude_desktop_config.json file.