mcp-server-chart vs claude-code-google-workspace
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | claude-code-google-workspace by evolsb | |
|---|---|---|
| Stars | ★ 4,068 | ★ 20 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityCommunicationDeveloper Tools |
| Language | TypeScript | Shell |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
claude-code-google-workspace · Summary
MCP servers for Google Workspace (Gmail, Drive, Calendar, Sheets, Docs) and Slack with multi-account 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
claude-code-google-workspace · Use cases
- Accessing emails and documents across multiple Google accounts
- Managing calendar events and tasks from Slack and Google Workspace
- Searching and retrieving content from Google Drive and Slack conversations
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"]
}
}
}claude-code-google-workspace · Install
Quick Start
- Clone this repo and open Claude Code in it
git clone https://github.com/YOUR_USERNAME/claude-code-google-workspace.git
cd claude-code-google-workspace
claude- Tell Claude Code: "Set up Google Workspace MCP for me"
- Restart Claude Code to load the new MCP servers
Manual Setup
Refer to [docs/manual-setup.md](docs/manual-setup.md) for detailed step-by-step instructions.
Configuration
Create .mcp.json at project root with:
{
"mcpServers": {
"gws-personal": {
"command": "bash",
"args": ["./gws-token-wrapper.sh", "personal.json"]
},
"slack": {
"command": "npx",
"args": ["slack-mcp-server"]
}
}
}