mcp-server-chart vs opencode-browser
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | opencode-browser by michaljach | |
|---|---|---|
| Stars | ★ 4,068 | ★ 46 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| 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.
opencode-browser · Summary
MCP server plugin for OpenCode that enables browser automation through Browser MCP integration.
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
opencode-browser · Use cases
- Automated web testing and validation of web applications
- Data extraction and web scraping from various websites
- Form automation and data entry for repetitive web tasks
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"]
}
}
}opencode-browser · Install
Installation
- Install Browser MCP Extension:
- Visit https://browsermcp.io/install - Install the extension for Chrome or Edge - Follow the setup instructions
- Configure OpenCode:
``bash npx opencode-browser init ` This creates/updates ./opencode.json` with the required configuration.
- Alternative manual configuration:
``json { "$schema": "https://opencode.ai/config.json", "plugin": ["opencode-browser"], "mcp": { "browsermcp": { "type": "local", "command": ["npx", "-y", "@browsermcp/mcp@0.1.3"], "enabled": true } } } ``