mcp-server-chart vs mcp-google-ads
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-google-ads by cohnen | |
|---|---|---|
| Stars | ★ 4,068 | ★ 609 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-google-ads · Summary
A Python MCP server that bridges Google Ads with Claude AI for natural language advertising data analysis and management.
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
mcp-google-ads · Use cases
- Analyze campaign performance metrics through natural language queries
- Generate visual reports of advertising data with Claude
- Optimize ad budgets and bid strategies based on performance insights
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"]
}
}
}mcp-google-ads · Install
- Clone the repository:
git clone https://github.com/ixigo/mcp-google-ads.git - Set up Google Ads API credentials (OAuth or Service Account)
- Create a virtual environment:
uv venv .venv - Activate the environment:
source .venv/bin/activate - Install dependencies:
uv pip install -r requirements.txt - Configure your
.envfile with credentials - Add to Claude Desktop config:
{
"mcpServers": {
"google-ads": {
"command": "python",
"args": ["-m", "mcp_google_ads.server"],
"env": {
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-token",
"GOOGLE_ADS_CLIENT_ID": "your-client-id",
"GOOGLE_ADS_CLIENT_SECRET": "your-client-secret",
"GOOGLE_ADS_REFRESH_TOKEN": "your-refresh-token",
"GOOGLE_ADS_LOGIN_CUSTOMER_ID": "your-id"
}
}
}
}