mcp-server-chart vs glance
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | glance by DebugBase | |
|---|---|---|
| Stars | ★ 4,068 | ★ 149 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationDeveloper Toolstesting |
| Language | TypeScript | TypeScript |
| 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.
glance · Summary
AI-powered browser automation MCP server for Claude Code with 30 tools for testing, screenshots, and interaction.
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
glance · Use cases
- Automated end-to-end testing of web applications
- Visual regression testing and comparison
- Browser interaction and UI validation from Claude Code
- Debugging web applications by inspecting live pages
- Accessibility testing with DOM snapshots
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"]
}
}
}glance · Install
Install Glance MCP server:
npm install -g glance-mcpOr add directly to Claude Code:
claude mcp add glance -- npx glance-mcpConfigure your .mcp.json:
{
"mcpServers": {
"glance": {
"command": "npx",
"args": ["glance-mcp"],
"env": {
"BROWSER_HEADLESS": "false"
}
}
}
}