mcp-server-chart vs FocusRelayMCP
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | FocusRelayMCP by deverman | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 46 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 效率工具开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Swift |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
FocusRelayMCP · 概述
OmniFocus 的 MCP 服务器,支持自然语言查询任务、项目和标签。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
FocusRelayMCP · 使用场景
- 通过询问'我今天应该做什么?'进行日常规划,获取过滤后的结果
- 项目管理,例如'显示我搁置的项目'
- 上下文切换,例如'我需要打哪些电话?'
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"]
}
}
}FocusRelayMCP · 安装
安装
**快速概览:** 无论选择哪种安装方法,都需要完成以下步骤:
- **安装二进制文件**(通过 Homebrew、手动下载或从源代码构建)
- **安装 OmniFocus 插件**(下面的步骤 2)
- **在客户端配置 MCP**(下面的步骤 3)
- **重启 OmniFocus**(下面的步骤 4)
选项 A:Homebrew 安装(推荐用于 macOS)
如果您已安装 [Homebrew](https://brew.sh),这是最简单的方法:
# 添加 tap(一次)
brew tap deverman/focus-relay
# 安装 MCP 服务器和 OmniFocus 插件
brew install focusrelay步骤 3:配置 MCP
添加到您的 Claude Desktop 配置中:
{
"mcp": {
"focusrelay": {
"type": "local",
"command": ["/opt/homebrew/bin/focusrelay", "serve"],
"enabled": true
}
}
}步骤 4:重启 OmniFocus
osascript -e 'tell application "OmniFocus" to quit' && sleep 2 && open -a "OmniFocus"