Fathom MCP Server

平台与服务

by agencyenterprise

将 Claude 连接到 Fathom 的会议录音、transcripts 与 summaries,便于检索和使用会议信息。

什么是 Fathom MCP Server

将 Claude 连接到 Fathom 的会议录音、transcripts 与 summaries,便于检索和使用会议信息。

README

<div align="center">

Fathom AI MCP Server

Connect Claude to your Fathom meetings, transcripts, and AI summaries.

License: MIT Node.js MCP MCP Registry

Get Started | Available Tools | API Docs | Self-Hosting | Contributing

Security

</div>

Get Started

This server is published to the MCP Registry as io.github.agencyenterprise/fathom-mcp-server.

Claude Desktop (Streamable HTTP)

Connect in under 60 seconds:

code
https://www.fathom-mcp-server.com/mcp
  1. Open Claude Desktop
  2. Go to Settings > Connectors > Add Custom Connector
  3. Paste the URL above
  4. Authenticate with Fathom

That's it. Ask Claude about your meetings.

Organizations: Admins must add the connector via organization admin settings, not personal settings.

Perplexity Desktop and other SSE clients

For clients that use the legacy SSE transport (such as Perplexity Desktop for Mac), use the SSE endpoint:

code
https://www.fathom-mcp-server.com/sse

Refer to your client's documentation for how to add a remote SSE connector.

Available Tools

ToolDescriptionDocs
list_meetingsList meetings with filters (date, team, recorder, etc.)Fathom API
search_meetingsSearch meetings by title, host, or attendee informationMCP Custom
get_transcriptGet full transcript for a recordingFathom API
get_summaryGet AI-generated summary for a recordingFathom API
list_teamsList all accessible teamsFathom API
list_team_membersList members of a teamFathom API

Custom MCP Tools

search_meetings

Search Fathom meetings by title, meeting title, host name, host email, or attendee name/email. Automatically scans up to 5 pages of results. This is an MCP-native tool that performs client-side filtering since Fathom's API doesn't provide a search endpoint.

See the Fathom MCP Server documentation for full request and response parameters.

Example Usage in Claude

"Show me my meetings from last week"

"Get the transcript from my standup yesterday"

"Summarize my meeting with the design team"

Security

Your Fathom data is never stored or exposed by this server.

DataStored?Exposed?Details
Meetings, transcripts, summariesNoNoFetched from Fathom and passed directly to Claude
Team and member infoNoNoFetched from Fathom and passed directly to Claude
OAuth tokensYesNoEncrypted at rest (AES-256-GCM), never logged or exposed
  • Pass-through architecture: This server acts as a secure proxy, your Fathom data flows directly from Fathom to Claude without being stored, cached, or logged
  • Encryption at rest: The only stored data (OAuth tokens) is encrypted using AES-256-GCM before being written to the database
  • HTTPS only: All communication between Claude, this server, and Fathom is encrypted in transit

See our full Privacy Policy for details on data collection, usage, and your rights.

Permissions

This MCP server defines a custom scope called fathom:read for tokens it issues to Claude. This is not a Fathom API scope - it's specific to this MCP server to describe read-only access to your Fathom data.

The Fathom API itself only provides read access via its public_api scope. Write operations (creating/editing meetings, transcripts, etc.) are not available in the Fathom API.

Limitations

  • search_meetings performs client-side filtering since Fathom's API doesn't provide a search endpoint. For users with many meetings, use list_meetings with date filters instead.
  • You can always ask the LLM what query params are avaialable.

Self-Hosting

Fathom OAuth apps require HTTPS redirect URIs, so local development with http://localhost isn't possible. Deploy to a hosting provider to test.

1. Deploy to a Hosting Provider

Railway (recommended), Render, or any platform that provides:

  • Node.js 18+ runtime
  • PostgreSQL database
  • HTTPS URL

Railway setup:

  1. Fork/clone this repo
  2. Create a new Railway project (you can deploy directly from your forked Github repo)
  3. Add a PostgreSQL database service in project
  4. Connect Database url to deployed repo in project and setup other envs

2. Create a Fathom OAuth App

  1. Go to Fathom Developer Portal
  2. Click "Register your app" (requires Fathom admin access)
  3. Set the redirect URI to https://your-app-url.railway.app/oauth/fathom/callback
  4. Note your Client ID and Client Secret

3. Configure Environment Variables (locally and in Railway)

Set these in your hosting provider's dashboard (as well as your local .env file to test build and start commands locally before pushing changes)

VariableDescription
DATABASE_URLPostgreSQL connection string (auto-set by Railway - use public db url)
BASE_URLYour app's public URL (e.g., https://your-app.railway.app)
TOKEN_ENCRYPTION_KEY32-byte hex key (generate with openssl rand -hex 32)
FATHOM_CLIENT_IDFrom step 2
FATHOM_CLIENT_SECRETFrom step 2

4. Initialize Database

Run migrations after first deploy:

bash
npm run db:migrate

Or via Railway CLI:

bash
railway run npm run db:migrate

5. Connect Claude

Add your deployed URL as a custom connector in Claude Desktop:

code
https://your-app.railway.app/mcp

For SSE clients (Perplexity Desktop, etc.):

code
https://your-app.railway.app/sse

Development

bash
npm run dev          # Start dev server with hot reload only for testing
npm run build        # Build for production
npm run start        # Run production build
npm run lint         # Check for linting errors
npm run lint:fix     # Fix linting errors
npm run typecheck    # Run TypeScript type checking
npm run ci           # Run all CI checks (lint, typecheck, test, build)
npm run format       # Format code with Prettier
npm run db:studio    # Open Drizzle Studio for database inspection
npm run db:generate  # Generate migrations from schema changes
npm run db:migrate   # Run pending migrations
npm run db:push      # Push schema directly (dev only)

Tip: Run npm run ci before pushing to ensure your changes pass GitHub Actions.

Beta Testing

For pre-release features, use the staging URLs:

code
https://fathom-mcp-staging.up.railway.app/mcp
code
https://fathom-mcp-staging.up.railway.app/sse

Fathom AI Deep dive

https://developers.fathom.ai/llms.txt

Contributing

See CONTRIBUTING.md for development setup and guidelines.

Releasing

See RELEASING.md for version and release instructions.

Future Development Plans

  • Transcript vectorization — Enable vectorization of large transcripts so LLMs can parse and understand them more efficiently. Would be implemented as a stateless worker to ensure no user data is persisted.
  • Action item aggregation — Aggregate action items across meetings with filters. "Show all my incomplete action items from this week."
  • Meeting analytics — Calculate stats like total meeting time, meeting frequency, and top attendees.
  • Speaker time analysis — Analyze transcripts to show who spoke most in a meeting.
  • Meeting comparison — Compare two meeting summaries to highlight what changed over time.
  • Fathom API changelog monitoring — Automated detection of Fathom API changes via GitHub Action that periodically checks their API reference and creates an issue if changes are detected.

Contributions toward these goals are welcome. See CONTRIBUTING.md.

License

MIT License - see LICENSE for details.

常见问题

Fathom MCP Server 是什么?

将 Claude 连接到 Fathom 的会议录音、transcripts 与 summaries,便于检索和使用会议信息。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.8k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.8k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.8k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.9k

评论