fathom-mcp-server

fathom-mcp-server

Enables Claude Desktop and MCP clients to access Fathom meeting intelligence, including listing meetings, retrieving summaries and transcripts, and searching by title.

Category
访问服务器

README

Fathom MCP Server

MCP Node.js License

A Model Context Protocol (MCP) server that enables Claude Desktop (and other MCP clients) to access your Fathom meeting intelligence — list meetings, read summaries, search by title, and pull full transcripts.

Features

Meeting Intelligence Tools

Tool Description
fathom_list_meetings List recent meetings with optional date filters. Returns title, date, participants, summary, and action items
fathom_get_summary Get the AI-generated summary for a specific meeting (markdown formatted)
fathom_get_transcript Get the full speaker-labeled, timestamped transcript for a meeting
fathom_search_meetings Search meetings by keyword in title with optional date filtering

Built-in Reliability

  • Token-bucket rate limiter — respects Fathom's 60 req/min limit client-side
  • Auto-retry on 429 — exponential backoff (2s, 4s, 8s) up to 3 retries
  • Structured error responses — actionable error messages with status codes and recovery hints
  • Prompt injection protection — external content wrapped in randomised EXTCONTENT markers

Quick Start

Prerequisites

  • Node.js 18 or higher
  • A Fathom account with API access
  • Claude Desktop (or any MCP-compatible client)

Get Your Fathom API Key

  1. Go to Fathom Settings
  2. Generate an API key

Installation

Option 1: npx (Recommended — Zero Install)

# Test it works
FATHOM_API_KEY=your-key npx fathom-mcp-server

Claude Desktop configuration:

{
  "mcpServers": {
    "fathom": {
      "command": "npx",
      "args": ["-y", "fathom-mcp-server"],
      "env": {
        "FATHOM_API_KEY": "your-fathom-api-key"
      }
    }
  }
}

Option 2: Install from npm

npm install -g fathom-mcp-server

Then configure Claude Desktop:

{
  "mcpServers": {
    "fathom": {
      "command": "fathom-mcp-server",
      "env": {
        "FATHOM_API_KEY": "your-fathom-api-key"
      }
    }
  }
}

Option 3: Install from Source

git clone https://github.com/luminarylane/fathom-mcp-server.git
cd fathom-mcp-server
npm install
npm run build

Then configure Claude Desktop:

{
  "mcpServers": {
    "fathom": {
      "command": "node",
      "args": ["/path/to/fathom-mcp-server/dist/index.js"],
      "env": {
        "FATHOM_API_KEY": "your-fathom-api-key"
      }
    }
  }
}

Usage Examples

Once configured, ask Claude to:

  • "What meetings did I have this week?"
  • "Get the summary for my last standup"
  • "Search for meetings about product roadmap"
  • "Pull the transcript from my meeting with the design team"
  • "List all meetings from the past month"

Authentication

Set the FATHOM_API_KEY environment variable with your API key from Fathom Settings.

Rate Limits

Fathom enforces 60 requests per 60 seconds per user. The server handles this automatically with a client-side token bucket and exponential backoff retries.

Troubleshooting

Missing API key

FATHOM_API_KEY env var is required

Set the FATHOM_API_KEY environment variable before starting the server.

401 Authentication failed

AUTH_FAILED: FATHOM_API_KEY is invalid or expired.

Check your API key in Fathom Settings and regenerate if needed.

Rate limit exceeded

RATE_LIMITED: Fathom rate limit (60/min). Wait 60s and retry.

The server handles short waits automatically. For longer windows, wait and retry.

Reporting Issues

  1. Check existing issues
  2. Open a new issue with the full error message, steps to reproduce, and your environment details

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

npm install
npm run dev        # Dev mode
npx tsc --noEmit   # Type check
npx prettier --write .  # Format

License

MIT License — see LICENSE for details.

Acknowledgments

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选