mcp-server-chart vs puppeteer-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | puppeteer-mcp-server by sultannaufal | |
|---|---|---|
| Stars | ★ 4,068 | ★ 19 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
puppeteer-mcp-server · Summary
Self-hosted Puppeteer MCP server with browser automation tools, supporting multiple transports and API key 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
puppeteer-mcp-server · Use cases
- Automated web testing and screenshots of web applications
- Web scraping and data extraction from dynamic websites
- Automated form filling and UI interaction testing
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-server · Install
Installation
Using Docker (Recommended)
# Clone the repository
git clone https://github.com/sultannaufal/puppeteer-mcp-server.git
cd puppeteer-mcp-server
# Create .env file with your API key
echo "API_KEY=your-secure-api-key-here" > .env
# Start with Docker Compose
docker compose --env-file .env up -dManual Installation
# Prerequisites: Node.js 18+, npm 8+
npm install
npm run build
npm startClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"puppeteer": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}