mcp-server-chart vs claude-code-google-workspace
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | claude-code-google-workspace by evolsb | |
|---|---|---|
| Stars | ★ 4,068 | ★ 20 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 43 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 效率工具沟通协作开发者工具 |
| 实现语言 | TypeScript | Shell |
| 最近提交 | 本月 | 2 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
claude-code-google-workspace · 概述
支持多账户的 Google Workspace 和 Slack MCP 服务器。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
claude-code-google-workspace · 使用场景
- 跨多个 Google 账户访问邮件和文档
- 从 Slack 和 Google Workspace 管理日历事件和任务
- 搜索和检索 Google Drive 和 Slack 对话中的内容
mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}claude-code-google-workspace · 安装
快速开始
- 克隆此仓库并在其中打开 Claude Code
git clone https://github.com/YOUR_USERNAME/claude-code-google-workspace.git
cd claude-code-google-workspace
claude- 告诉 Claude Code:"为我设置 Google Workspace MCP"
- 重启 Claude Code 以加载新的 MCP 服务器
手动设置
有关详细步骤说明,请参考 [docs/manual-setup.md](docs/manual-setup.md)。
配置
在项目根目录创建 .mcp.json:
{
"mcpServers": {
"gws-personal": {
"command": "bash",
"args": ["./gws-token-wrapper.sh", "personal.json"]
},
"slack": {
"command": "npx",
"args": ["slack-mcp-server"]
}
}
}