fathom-mcp-server
Allows listing recent meetings, retrieving AI-generated summaries, pulling full speaker-labeled transcripts, and searching meetings by title with optional date filtering.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@fathom-mcp-serverlist my recent meetings"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fathom MCP Server
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 |
| List recent meetings with optional date filters. Returns title, date, participants, summary, and action items |
| Get the AI-generated summary for a specific meeting (markdown formatted) |
| Get the full speaker-labeled, timestamped transcript for a meeting |
| 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
EXTCONTENTmarkers
Related MCP server: Fathom Video MCP Server
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
Go to Fathom Settings
Generate an API key
Installation
Option 1: npx (Recommended — Zero Install)
# Test it works
FATHOM_API_KEY=your-key npx fathom-mcp-serverClaude 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-serverThen 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 buildThen 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 requiredSet 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
Check existing issues
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 . # FormatLicense
MIT License — see LICENSE for details.
Acknowledgments
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/luminarylane/fathom-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server