mcp-server-chart vs ga4-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ga4-mcp-server by spindle79 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| 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.
ga4-mcp-server · Summary
Google Analytics 4 MCP server exposing metrics to AI agents with daily/monthly breakdowns and dual MCP/REST endpoints.
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
ga4-mcp-server · Use cases
- AI agents analyzing website performance metrics for content optimization
- Digital marketers extracting conversion data and traffic patterns for campaigns
- Content creators evaluating page engagement metrics to improve user experience
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"]
}
}
}ga4-mcp-server · Install
Installation
- Install dependencies:
pnpm install- Set up environment variables:
GA_PROPERTY_ID=your_ga4_property_id
GOOGLE_APPLICATION_CREDENTIALS=path/to/your/credentials.json
PORT=3001 # optional, defaults to 3001- Start the server:
pnpm devFor Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"ga4": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"GA_PROPERTY_ID": "your_ga4_property_id",
"GOOGLE_APPLICATION_CREDENTIALS": "path/to/your/credentials.json"
}
}
}
}