mcp-server-chart vs google_ads_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google_ads_mcp by google-marketing-solutions | |
|---|---|---|
| Stars | ★ 4,068 | ★ 203 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceAI / LLM ToolsDeveloper Tools |
| 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.
google_ads_mcp · Summary
Google Ads MCP server enables LLMs to interact with Google Ads API via GAQL queries and ad management tools.
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
google_ads_mcp · Use cases
- Automate Google Ads reporting by querying campaign metrics through natural language
- Create and manage advertising campaigns directly through conversational AI interfaces
- Generate performance insights across multiple Google Ads accounts
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"]
}
}
}google_ads_mcp · Install
Installation
- Install Python 3.12 with pipx or uv
- Set up Google Ads credentials in a
google-ads.yamlfile with required credentials - Configure environment variables (optional):
ADS_MCP_ENABLE_MUTATIONS,GOOGLE_ADS_CREDENTIALS,USE_GOOGLE_OAUTH_ACCESS_TOKEN
Launch with pipx
pipx run --spec git+https://github.com/google-marketing-solutions/google_ads_mcp.git run-mcp-serverLocal development
uv pip sync
uv run -m ads_mcp.serverClaude Desktop Configuration
{
"mcpServers": {
"GoogleAds": {
"command": "pipx",
"args": [
"run",
"--spec",
"git+https://github.com/google-marketing-solutions/google_ads_mcp.git",
"run-mcp-server"
],
"env": {
"GOOGLE_ADS_CREDENTIALS": "PATH_TO_YAML"
},
"timeout": 30000
}
}
}