mcp-server-chart vs powhttp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | powhttp-mcp by usestring | |
|---|---|---|
| Stars | ★ 4,068 | ★ 71 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsWeb ScrapingMonitoring |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
powhttp-mcp · Summary
MCP server enabling AI assistants to analyze HTTP traffic captured by powhttp with advanced debugging capabilities.
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
powhttp-mcp · Use cases
- Debugging web scraping bots to identify anti-bot detection mechanisms
- Analyzing API behavior to understand data structures and endpoints
- Generating scrapers from observed HTTP traffic patterns
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"]
}
}
}powhttp-mcp · Install
Installation
Install via go install:
go install github.com/usestring/powhttp-mcp/cmd/powhttp-mcp@latestAdding to Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"powhttp": {
"command": "powhttp-mcp",
"env": {
"POWHTTP_BASE_URL": "http://localhost:7777",
"POWHTTP_PROXY_URL": "http://localhost:8888"
}
}
}
}