MCP Catalogs
首页

fathom-mcp

by Dot-Fun·15·综合分 42

用于访问 Fathom AI 会议录音、文稿、摘要、团队和 Webhook 的 MCP 服务器。

ai-llmcommunicationproductivity
10
Forks
1
活跃 Issue
2 个月前
最近提交
2 天前
收录于

概述

Fathom MCP 服务器提供了与 Fathom AI 会议录制平台全面交互的工具。用户可以检索会议摘要和文稿、按多种条件筛选会议、管理团队和成员,并设置 Webhook 以获取实时通知。该服务器支持 stdio 和 HTTP 传输方式,使其适用于不同的集成场景。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:AI 助手无需离开对话界面即可访问会议摘要和文稿
:通过 Webhook 通知实现会议完成触发的自动化工作流
:通过 Fathom 的集成功能将会议内容与 CRM 系统交叉引用
:Fathom API 密钥需要什么权限?
:如何处理速率限制?

什么时候选它

如果你已经在使用 Fathom AI 并希望将会议数据集成到 MCP 工作流或 AI 助手中,请选择此服务器。

什么时候不要选它

如果你不使用 Fathom AI,请不要选择此服务器,因为它需要其 API 才能运行,并且不支持其他会议平台。

此 server 暴露的工具

从 README 抽取出 7 个工具
  • list_meetings

    List meetings with advanced filtering and optional inclusion of transcripts, summaries, action items, and CRM matches

  • get_summary

    Retrieve meeting summaries with support for async delivery

  • get_transcript

    Retrieve meeting transcripts with speaker information and timestamps

  • list_teams

    List all accessible teams

  • list_team_members

    List team members with optional team filtering

  • create_webhook

    Create webhooks for meeting notifications with customizable triggers and content inclusion

  • delete_webhook

    Delete webhooks by ID

可对比工具

otter-mcpfireflies-mcpmeetings-mcpraw API calls via shell-mcp

安装

安装

  1. 克隆仓库:
git clone https://github.com/Dot-Fun/fathom-mcp.git
cd fathom-mcp
  1. 安装依赖:
uv pip install fastmcp httpx pydantic
# 或者
pip install fastmcp httpx pydantic
  1. 设置您的 API 密钥:
export FATHOM_API_KEY="your_api_key_here"
  1. 运行服务器:
fastmcp run server.py

Claude 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 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。