mcp-server-chart vs chrome-devtools-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | chrome-devtools-mcp by ChromeDevTools | |
|---|---|---|
| Stars | ★ 4,068 | ★ 39,757 |
| 30d uses | 10,239 | — |
| Score | 84 | 65 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationDeveloper ToolsWeb Scraping |
| 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.
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
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
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
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"]
}
}
}chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}