mcp-server-chart vs google-cloud-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google-cloud-mcp by krzko | |
|---|---|---|
| Stars | ★ 4,068 | ★ 78 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Cloud StorageDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
google-cloud-mcp · Summary
A comprehensive MCP server providing access to multiple Google Cloud services including billing, monitoring, IAM, Spanner, and more.
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-cloud-mcp · Use cases
- DevOps engineers monitoring cloud infrastructure costs and performance
- Developers debugging applications using error reporting and logs
- Security teams auditing IAM permissions and access controls
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-cloud-mcp · Install
# Clone and install the repository
git clone https://github.com/krzko/google-cloud-mcp.git
cd google-cloud-mcp
pnpm install
pnpm build
# Authenticate to Google Cloud
gcloud auth application-default login
# Configure in Claude Desktop
{
"mcpServers": {
"google-cloud-mcp": {
"command": "node",
"args": ["/path/to/google-cloud-mcp/dist/index.js"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
}
}
}
}