mcp-server-chart vs google_workspace_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | google_workspace_mcp by taylorwilsdon | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,410 |
| 30d uses | 10,239 | — |
| Score | 84 | 58 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityCommunicationDeveloper 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.
google_workspace_mcp · Summary
Comprehensive Google Workspace MCP server for Gmail, Calendar, Drive, Docs, Sheets, and more with OAuth 2.1 support.
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_workspace_mcp · Use cases
- Automate email and calendar management through AI assistants
- Manage Google Drive files and permissions programmatically
- Create and edit documents, spreadsheets, and presentations through natural language commands
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_workspace_mcp · Install
Installation
- Install the package via pip:
pip install workspace-mcp- Set up OAuth credentials in Google Cloud Console
- Launch the server:
uvx workspace-mcp --tool-tier coreClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"google-workspace": {
"command": "uvx",
"args": ["workspace-mcp", "--transport", "stdio"]
}
}
}