mcp-server-chart vs mcp-bigquery-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-bigquery-server by ergut | |
|---|---|---|
| Stars | ★ 4,068 | ★ 139 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseAI / LLM ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-bigquery-server · Summary
A secure MCP server enabling LLMs to query BigQuery datasets with field-level data protection.
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-bigquery-server · Use cases
- Natural language analysis of business data stored in BigQuery
- Healthcare data analysis with HIPAA compliance through field-level restrictions
- Financial reporting with automatic protection of sensitive columns
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-bigquery-server · Install
Installation
- **Install prerequisites**: Node.js 14+, Google Cloud project with BigQuery enabled, and Claude Desktop
- **Authenticate with Google Cloud**:
``bash gcloud auth application-default login ``
- **Configure Claude Desktop** (
claude_desktop_config.json):
``json { "mcpServers": { "bigquery": { "command": "npx", "args": [ "-y", "@ergut/mcp-bigquery-server", "--project-id", "your-project-id" ] } } } ``
For Protected Mode with sensitive data, add --config-file /path/to/config.json to the args.