mcp-server-chart vs cloud-run-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cloud-run-mcp by GoogleCloudPlatform | |
|---|---|---|
| Stars | ★ 4,068 | ★ 608 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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.
cloud-run-mcp · Summary
MCP server that enables AI agents to deploy applications to Google Cloud Run with comprehensive tool support and authentication options.
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
cloud-run-mcp · Use cases
- AI-assisted development environments deploying code directly to Cloud Run
- Automated CI/CD pipelines using AI agents to manage Cloud Run services
- Chat-based interfaces managing Google Cloud infrastructure through natural language
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"]
}
}
}cloud-run-mcp · Install
Installation
Quick Start (Node.js)
"mcpServers": {
"cloud-run": {
"command": "npx",
"args": ["-y", "@google-cloud/cloud-run-mcp"]
}
}With Claude Desktop
Add to your Claude Desktop config file (claude_desktop_config.json):
{
"mcpServers": {
"cloud-run": {
"command": "npx",
"args": ["-y", "@google-cloud/cloud-run-mcp"],
"env": {
"GOOGLE_CLOUD_PROJECT": "your-project-id",
"GOOGLE_CLOUD_REGION": "your-region",
"DEFAULT_SERVICE_NAME": "your-service-name"
}
}
}
}Using Docker
{
"mcpServers": {
"cloud-run": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "GOOGLE_APPLICATION_CREDENTIALS",
"-v", "/local/path:/local/path",
"mcp/cloud-run-mcp:latest"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json"
}
}
}
}