mcp-server-chart vs fathom-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | fathom-mcp by Dot-Fun | |
|---|---|---|
| Stars | ★ 4,068 | ★ 15 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 42 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具沟通协作效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 2 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
fathom-mcp · 概述
用于访问 Fathom AI 会议录音、文稿、摘要、团队和 Webhook 的 MCP 服务器。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
fathom-mcp · 使用场景
- AI 助手无需离开对话界面即可访问会议摘要和文稿
- 通过 Webhook 通知实现会议完成触发的自动化工作流
- 通过 Fathom 的集成功能将会议内容与 CRM 系统交叉引用
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"]
}
}
}fathom-mcp · 安装
安装
- 克隆仓库:
git clone https://github.com/Dot-Fun/fathom-mcp.git
cd fathom-mcp- 安装依赖:
uv pip install fastmcp httpx pydantic
# 或者
pip install fastmcp httpx pydantic- 设置您的 API 密钥:
export FATHOM_API_KEY="your_api_key_here"- 运行服务器:
fastmcp run server.pyClaude Desktop 集成
添加到您的 Claude Desktop 配置:
{
"mcpServers": {
"fathom": {
"command": "uv",
"args": [
"--directory",
"/path/to/fathom-mcp",
"run",
"fastmcp",
"run",
"server.py"
],
"env": {
"FATHOM_API_KEY": "your_api_key_here"
}
}
}
}