mcp-server-chart vs webmcp-bridge
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | webmcp-bridge by holon-run | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationDeveloper ToolsWeb Scraping |
| 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.
webmcp-bridge · Summary
A bridge that connects local MCP clients to browser WebMCP tools through Playwright, supporting both native and injected adapters.
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
webmcp-bridge · Use cases
- Connect local MCP clients to browser-only WebMCP tools like those on websites requiring authentication
- Enable human-AI collaboration on the same web page with shared browser context
- Automate interactions with websites that don't natively support WebMCP through adapter injection
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"]
}
}
}webmcp-bridge · Install
# Install Playwright browsers first
npx playwright install
# Install from npm
npm install -g @webmcp-bridge/local-mcp
# Run directly
npx -y @webmcp-bridge/local-mcp --url https://board.holon.run --headless
# Or with uxc (recommended for stable shortcuts)
uxc link board-webmcp-ui "npx -y @webmcp-bridge/local-mcp --url https://board.holon.run --no-headless"Claude Desktop configuration:
{
"mcpServers": {
"webmcp-bridge": {
"command": "npx",
"args": ["-y", "@webmcp-bridge/local-mcp", "--url", "https://board.holon.run"]
}
}
}