mcp-server-chart vs puppeteer-mcp-claude
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | puppeteer-mcp-claude by jaenster | |
|---|---|---|
| Stars | ★ 4,068 | ★ 38 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| 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.
puppeteer-mcp-claude · Summary
Browser automation MCP server for Claude using Puppeteer to control web pages, capture screenshots, and interact with websites.
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
puppeteer-mcp-claude · Use cases
- Automated web scraping and data extraction from websites
- Taking screenshots of web pages for documentation or analysis
- Automated form filling and website interaction workflows
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"]
}
}
}puppeteer-mcp-claude · Install
Install
**macOS / Linux**
curl -fsSL https://raw.githubusercontent.com/jaenster/puppeteer-mcp-claude/main/install.sh | bash**Windows (PowerShell)**
iwr -useb https://raw.githubusercontent.com/jaenster/puppeteer-mcp-claude/main/install.ps1 | iex**Manual installation**
npm install -g puppeteer-mcp-claude
claude mcp add puppeteer-mcp-claude -- npx -y puppeteer-mcp-claude serve**Claude Desktop Configuration** Add to claude_desktop_config.json:
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "puppeteer-mcp-claude", "serve"]
}
}
}