mcp-server-chart vs parallel-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | parallel-browser-mcp by etairl | |
|---|---|---|
| Stars | ★ 4,068 | ★ 99 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
parallel-browser-mcp · Summary
An MCP server enabling parallel browser automation across multiple cloud providers with session-based control.
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
parallel-browser-mcp · Use cases
- AI agents performing parallel web scraping and data collection from multiple sources simultaneously
- Automated UI testing across different browser environments and cloud providers in parallel
- Content management systems automating updates across multiple web properties concurrently
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"]
}
}
}parallel-browser-mcp · Install
Install with npm:
npm install -g parallel-browser-mcpIn Claude Desktop:
{
"mcpServers": {
"parallel-browser-mcp": {
"command": "npx",
"args": ["parallel-browser-mcp@latest"],
"env": {
"BROWSER_MCP_CONFIG": "{\"defaultProvider\":\"playwright\",\"providers\":{\"playwright\":{\"launchOptions\":{\"headless\":true}}}}",
"BROWSERBASE_API_KEY": "your_browserbase_key",
"ANCHOR_API_KEY": "your_anchor_key"
}
}
}
}