fathom_search_meetings
Search meeting titles, transcripts, and summaries to find relevant discussions, mentions, or topics with filtering options.
Instructions
Search across Fathom meeting titles, transcripts, and summaries.
This tool performs a text search across your meeting content to find relevant discussions, mentions, or topics.
Args:
query (string, required): Search string (2-200 characters)
created_after (string): Filter to meetings after this ISO 8601 timestamp
created_before (string): Filter to meetings before this ISO 8601 timestamp
teams (string[]): Filter by team names
limit (number): Max results to return (1-50, default: 10)
response_format ('markdown'|'json'): Output format (default: 'markdown')
Returns: Matching meetings with:
Meeting details
Where matches were found (title, transcript, summary)
Context snippets showing the matched text
Examples:
Search for topic: { query: 'quarterly budget' }
With date filter: { query: 'product launch', created_after: '2024-01-01T00:00:00Z' }
Limit results: { query: 'feature request', limit: 5 }
Notes:
Search is case-insensitive
Searches across transcripts and summaries (fetched automatically)
Limited to most recent meetings for performance
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search string to find in meeting titles, transcripts, and summaries | |
| created_after | No | Filter meetings created after this ISO 8601 timestamp | |
| created_before | No | Filter meetings created before this ISO 8601 timestamp | |
| teams | No | Filter by team names | |
| limit | No | Maximum number of results to return (1-50) | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |