fathom-mcp

matthewbergvinson/fathom-mcp

3.2

If you are the rightful owner of fathom-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Fathom-MCP server integrates Fathom.video with AI coding assistants, allowing users to access meeting transcripts, summaries, and action items through natural language.

Tools
5
Resources
0
Prompts
0

fathom-mcp

MCP server for Fathom.video — Access your AI meeting transcripts, summaries, and action items directly from Cursor IDE

License: MIT MCP Node.js

A Model Context Protocol (MCP) server that integrates Fathom.video with AI coding assistants like Cursor. Query your meeting transcripts, export recordings to markdown, search by participant, and manage webhooks — all through natural language.

Features

  • 📋 List & Search Meetings — Browse recordings with filters for date, team, participants, or external domains
  • 📝 Full Transcripts — Get speaker-labeled, timestamped transcripts formatted as markdown
  • 📊 AI Summaries — Access Fathom's AI-generated meeting summaries
  • ✅ Action Items — Pull action items from specific meetings or across recent calls
  • 📁 Export to Markdown — Save meetings as MeetingTitle_YYYY-MM-DD.md files
  • 👥 Team Management — List teams and team members
  • 🔔 Webhooks — Create and manage webhooks for real-time notifications

Quick Start

1. Get Your Fathom API Key

  1. Go to Fathom Settings
  2. Navigate to API Access
  3. Click Generate API Key

2. Install the MCP Server

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

3. Configure Cursor

Add to your ~/.cursor/mcp.json:

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

Note: Replace /path/to/fathom-mcp with the actual path where you cloned the repo, and add your Fathom API key.

4. Restart Cursor

Restart Cursor to load the MCP server. You can now use natural language to interact with your Fathom data:

  • "List my last 5 Fathom meetings"
  • "Get the transcript from my call with John"
  • "Export yesterday's meetings to markdown"
  • "Show me action items from this week"

Available Tools

Meeting Operations

ToolDescription
list_meetingsList meetings with filters (date, team, external-only)
get_meetingGet full meeting details including transcript, summary, actions
get_transcriptGet just the transcript formatted as markdown
search_meetingsSearch by participant email, company domain, or team

Export Operations

ToolDescription
export_meetingExport single meeting to MeetingTitle_YYYY-MM-DD.md
export_all_meetingsBulk export meetings with optional date filters

Action Items

ToolDescription
get_action_itemsGet action items from a specific meeting or recent calls

Team Management

ToolDescription
list_teamsList all teams in your organization
list_team_membersList team members (optionally filtered by team)

Webhooks

ToolDescription
create_webhookCreate webhook for new meeting notifications
delete_webhookDelete an existing webhook

Tool Parameters

list_meetings
ParameterTypeDescription
limitnumberMax meetings to return (0 = all)
created_afterstringISO 8601 timestamp filter
created_beforestringISO 8601 timestamp filter
include_external_onlybooleanOnly meetings with external participants
get_meeting
ParameterTypeRequiredDescription
recording_idnumberYesThe meeting's recording ID
include_transcriptbooleanNoInclude transcript (default: true)
include_summarybooleanNoInclude AI summary (default: true)
include_action_itemsbooleanNoInclude action items (default: true)
include_crm_matchesbooleanNoInclude CRM data (default: true)
search_meetings
ParameterTypeDescription
participant_emailsstring[]Filter by participant emails
domainsstring[]Filter by company domains (e.g., acme.com)
teamsstring[]Filter by team names
created_afterstringISO 8601 timestamp
created_beforestringISO 8601 timestamp
export_meeting / export_all_meetings
ParameterTypeDescription
recording_idnumberMeeting to export (export_meeting only)
created_afterstringOnly export after this date
created_beforestringOnly export before this date
output_dirstringCustom output directory
create_webhook
ParameterTypeRequiredDescription
destination_urlstringYesWebhook endpoint URL
include_transcriptbooleanNoInclude transcript in payload
include_summarybooleanNoInclude summary in payload
include_action_itemsbooleanNoInclude action items
include_crm_matchesbooleanNoInclude CRM data
triggered_forstring[]NoRecording types that trigger webhook

Exported Transcript Format

Exported meetings are saved as markdown with:

  • Metadata table — Date, duration, participants, Fathom links
  • AI Summary — Fathom's generated summary
  • Action Items — With assignees and completion status
  • Full Transcript — Speaker-labeled with timestamps

Example filename: Quarterly_Business_Review_2024-12-01.md

# Quarterly Business Review

## Meeting Details
| Field | Value |
|-------|-------|
| **Date** | Sunday, December 1, 2024 at 10:00 AM |
| **Duration** | 45m 32s |
| **Recorded by** | Jane Smith <jane@company.com> |

## Participants
- **John Doe** <john@client.com> _(external)_
- **Jane Smith** <jane@company.com>

## Summary
> Key discussion points and outcomes...

## Action Items
- [ ] Follow up on proposal _(assigned to Jane)_
- [x] Send meeting notes

## Transcript
**John Doe** _[00:00:15]_
> Thanks for joining today...

Rate Limits

The Fathom API allows 60 requests per minute. The MCP server handles this gracefully.

Security

  • API keys are stored in Cursor's MCP configuration (not in code)
  • Never commit your mcp.json or API keys to version control
  • Webhook secrets should be stored securely

Troubleshooting

MCP not loading?

  • Ensure you've restarted Cursor after editing mcp.json
  • Check the path to dist/index.js is correct
  • Verify your API key is valid

"fetch failed" errors?

  • Ensure you're using Node.js 18 or higher
  • Check your network connection
  • Verify API key permissions in Fathom settings

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Watch mode for development
npm run dev

License

MIT License — see for details.

Author

Matthew Bergvinson
Vigilante Consulting


Need Custom AI Tools Built Fast?

We build production-ready MCP servers, AI integrations, and automation tools for businesses.

📧 operations@vigilanteconsulting.com


This MCP server is not officially affiliated with Fathom Video, Inc.