mcp-server-chart vs google-drive-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google-drive-mcp by piotr-agier | |
|---|---|---|
| Stars | ★ 4,068 | ★ 151 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemCloud StorageProductivity |
| Language | TypeScript | TypeScript |
| 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-drive-mcp · Summary
A comprehensive MCP server for managing Google Drive files, Docs, Sheets, Slides, and Calendar with OAuth authentication.
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-drive-mcp · Use cases
- Automatically creating and organizing project documents in Google Drive
- Managing calendar events and scheduling meetings through AI assistants
- Searching and analyzing spreadsheets and documents 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"]
}
}
}google-drive-mcp · Install
Installation
Option 1: Use with npx (Recommended)
# Run the server (authentication happens automatically on first run)
npx @piotr-agier/google-drive-mcp
# Optional: Run authentication manually if needed
npx @piotr-agier/google-drive-mcp authOption 2: Local Installation
- Clone and install:
``bash git clone https://github.com/piotr-agier/google-drive-mcp.git cd google-drive-mcp npm install ``
- Set up credentials:
```bash # Copy the example file cp gcp-oauth.keys.example.json gcp-oauth.keys.json
# Edit gcp-oauth.keys.json with your OAuth client ID ```
- Authenticate (optional):
``bash npm run auth ``
Claude Desktop Configuration
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": ["@piotr-agier/google-drive-mcp"]
}
}
}