mcp-server-chart vs adloop
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | adloop by kLOsk | |
|---|---|---|
| Stars | ★ 4,068 | ★ 155 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| 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.
adloop · Summary
AdLoop is an MCP server providing read/write access to Google Ads and GA4 with safety guardrails.
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
adloop · Use cases
- Diagnose conversion drops by comparing Google Ads clicks with GA4 sessions
- Manage Google Ads campaigns through natural language with safety previews
- Validate tracking code effectiveness by comparing events in codebase vs GA4
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"]
}
}
}adloop · Install
Install with pip: pip install adloop
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"adloop": {
"command": "python",
"args": ["-m", "adloop"],
"env": {}
}
}
}