mcp-server-chart vs mcp-google-tasks
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | mcp-google-tasks by ktmage | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 29 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 效率工具开发者工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 13 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp-google-tasks · 概述
Google Tasks 的 MCP 服务器集成,让 AI 助手能够通过协议管理任务。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp-google-tasks · 使用场景
- AI 助手管理个人任务列表
- 基于其他 AI 输出自动创建任务
- 与 Google Tasks 集成的生产力工具
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"]
}
}
}mcp-google-tasks · 安装
安装
- 克隆存储库:
git clone <存储库 URL>
cd mcp-google-tasks- 安装依赖项:
npm install- 配置 Google Cloud 项目:
- 在 Google Cloud 控制台中启用 Tasks API
- 为桌面应用程序创建 OAuth 2.0 凭据
- 将凭据文件重命名为
credentials.json并放置在项目根目录中
- 构建和运行:
npm run build
node build/index.jsClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"google-tasks": {
"command": "node",
"args": ["/完整路径/到/mcp-google-tasks/build/index.js"]
}
}
}