fathom-mcp
by Dot-Fun·★ 15·综合分 42
用于访问 Fathom AI 会议录音、文稿、摘要、团队和 Webhook 的 MCP 服务器。
概述
Fathom MCP 服务器提供了与 Fathom AI 会议录制平台全面交互的工具。用户可以检索会议摘要和文稿、按多种条件筛选会议、管理团队和成员,并设置 Webhook 以获取实时通知。该服务器支持 stdio 和 HTTP 传输方式,使其适用于不同的集成场景。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果你已经在使用 Fathom AI 并希望将会议数据集成到 MCP 工作流或 AI 助手中,请选择此服务器。
什么时候不要选它
如果你不使用 Fathom AI,请不要选择此服务器,因为它需要其 API 才能运行,并且不支持其他会议平台。
此 server 暴露的工具
从 README 抽取出 7 个工具list_meetingsList meetings with advanced filtering and optional inclusion of transcripts, summaries, action items, and CRM matches
get_summaryRetrieve meeting summaries with support for async delivery
get_transcriptRetrieve meeting transcripts with speaker information and timestamps
list_teamsList all accessible teams
list_team_membersList team members with optional team filtering
create_webhookCreate webhooks for meeting notifications with customizable triggers and content inclusion
delete_webhookDelete webhooks by ID
可对比工具
安装
安装
- 克隆仓库:
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"
}
}
}
}FAQ
- Fathom API 密钥需要什么权限?
- API 密钥可以访问用户录制的会议和共享到用户团队的会议。这是用户级别的凭证。
- 如何处理速率限制?
- Fathom API 全局限制为每 60 秒 60 次 API 调用。速率受限的请求会返回 HTTP 429,并包含限制重置时间的标头。
fathom-mcp 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。