For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Connect your Fathom meeting recordings to the Mind Reasoner MCP Server
Access Meeting Transcripts
Connect Fathom to pull meeting recordings and transcripts directly into your AI workflows. Create minds from team meetings, client calls, and interviews without manual downloads.
What You’ll Get
When you connect Fathom to your MCP server, you unlock 3 additional tools:
fathom_list_meetings - List meetings with summaries, participants, and metadata
fathom_get_transcript - Get detailed transcripts with speaker names and emails
fathom_get_meeting_details - Get comprehensive meeting information including action items
These tools work alongside the 8 core Mind Reasoner tools, giving you seamless access to your meeting data.
Choose Your Integration Approach
You have two options for working with Fathom data:
Option 1: MCP Server Integration (Recommended)
Best for: AI-driven workflows, natural language access, no coding
Benefits:
Access Fathom meetings through simple AI commands
Automatic authentication and error handling
Seamless integration with Mind Reasoner mind creation
Works in Claude Desktop, Claude Code, and other MCP clients
Setup: Follow the steps below to add Fathom credentials to your MCP server
Option 2: Direct Fathom API Integration
Best for: Custom applications, specialized workflows, full API control
Benefits:
Complete control over API calls and data processing
The configuration method depends on how you’re running the MCP server:
For Local/Stdio Mode (Claude Desktop, Claude Code CLI)
Add this environment variable to your configuration:
Environment Variables (.env)
$
# Required - Mind Reasoner
$
MIND_REASONER_API_KEY=your_mind_reasoner_key
$
$
# Optional - Fathom Integration
$
FATHOM_API_KEY={{FATHOM_API_KEY}}
For Hosted/HTTP Mode (Serverless, Custom Clients)
Pass credentials as HTTP headers with each request:
HTTP Headers
$
# Required
$
Authorization: Bearer YOUR_MIND_REASONER_KEY
$
$
# Optional - Fathom
$
X-Fathom-Api-Key: {{FATHOM_API_KEY}}
Per-Request Authentication (HTTP Mode)
In HTTP mode, you can provide different Fathom credentials for each request. This is useful for multi-tenant applications or supporting multiple Fathom accounts.