fathom_list_meetings
Retrieve meeting recordings from Fathom with filtering by date, participants, teams, and optional AI summaries, transcripts, action items, and CRM data.
Instructions
List meetings from Fathom with optional filtering and pagination.
This tool retrieves meeting recordings from your Fathom account. You can filter by:
Company domains of calendar invitees
Internal vs external meetings
Date range (created_after/created_before)
Recorder email addresses
Team names
You can optionally include:
AI-generated summaries
Full transcripts
Action items
CRM matches (contacts, companies, deals)
Args:
calendar_invitees_domains (string[]): Filter by company domains
calendar_invitees_domains_type ('all'|'only_internal'|'one_or_more_external'): Filter by meeting type
created_after (string): ISO 8601 timestamp to filter meetings after
created_before (string): ISO 8601 timestamp to filter meetings before
cursor (string): Pagination cursor from previous response
include_action_items (boolean): Include action items (default: false)
include_crm_matches (boolean): Include CRM matches (default: false)
include_summary (boolean): Include summaries (default: false)
include_transcript (boolean): Include transcripts (default: false)
recorded_by (string[]): Filter by recorder emails
teams (string[]): Filter by team names
response_format ('markdown'|'json'): Output format (default: 'markdown')
Returns: Paginated list of meetings with requested details.
Examples:
List recent meetings: {}
External meetings only: { calendar_invitees_domains_type: 'one_or_more_external' }
With summaries: { include_summary: true }
Filter by team: { teams: ['Sales'] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| calendar_invitees_domains | No | Filter by company domains (e.g., ['acme.com', 'client.com']) | |
| calendar_invitees_domains_type | No | Filter by whether meeting includes external participants: 'all', 'only_internal', or 'one_or_more_external' | all |
| created_after | No | Filter meetings created after this ISO 8601 timestamp (e.g., '2024-01-01T00:00:00Z') | |
| created_before | No | Filter meetings created before this ISO 8601 timestamp | |
| cursor | No | Pagination cursor from previous response | |
| include_action_items | No | Include action items for each meeting | |
| include_crm_matches | No | Include CRM matches (contacts, companies, deals) for each meeting | |
| include_summary | No | Include AI-generated summary for each meeting | |
| include_transcript | No | Include full transcript for each meeting | |
| recorded_by | No | Filter by recorder email addresses | |
| teams | No | Filter by team names | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |