mcp-server-chart vs mcp-google-sheets
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-google-sheets by xing5 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 864 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM 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.
mcp-google-sheets · Summary
A production-ready MCP server for Google Sheets integration 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
mcp-google-sheets · Use cases
- Automate data entry and updates in spreadsheets through natural language commands
- Create and manage reports and dashboards using AI-driven analysis
- Enable collaborative workflows between AI systems and Google Sheets
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-sheets · Install
Quick Start
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Set environment variables
export SERVICE_ACCOUNT_PATH="/path/to/your/service-account-key.json"
export DRIVE_FOLDER_ID="YOUR_DRIVE_FOLDER_ID"
# Run the server
uvx mcp-google-sheets@latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"google-sheets": {
"command": "uvx",
"args": ["mcp-google-sheets@latest"],
"env": {
"SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
}
}
}
}For tool filtering:
{
"mcpServers": {
"google-sheets": {
"command": "uvx",
"args": ["mcp-google-sheets@latest", "--include-tools", "get_sheet_data,update_cells,list_spreadsheets"],
"env": {
"SERVICE_ACCOUNT_PATH": "/path/to/credentials.json"
}
}
}
}