mcp-server-chart vs browser-mcp-lite
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | browser-mcp-lite by karolaapiarian589 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | JavaScript |
| 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.
browser-mcp-lite · Summary
A lightweight MCP server for Chrome browser automation through extensions with secure token authentication.
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
browser-mcp-lite · Use cases
- Automating browser interactions for web testing workflows
- Extracting structured data from web pages using accessibility trees
- Enabling AI agents to interact with web applications through MCP
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"]
}
}
}browser-mcp-lite · Install
Installation
- Download the latest release from the GitHub repository
- Extract the ZIP file if needed
- Install the Chrome extension from the provided folder
- Launch the Windows application
- Configure token authentication between the app and extension
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"browser-mcp-lite": {
"command": "path/to/browser-mcp-lite.exe",
"args": [],
"env": {
"TOKEN": "your-auth-token"
}
}
}
}