|
| 1 | +--- |
| 2 | +title: Fathom |
| 3 | +description: Access meeting recordings, transcripts, and summaries |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="fathom" |
| 10 | + color="#181C1E" |
| 11 | +/> |
| 12 | + |
| 13 | +## Usage Instructions |
| 14 | + |
| 15 | +Integrate Fathom AI Notetaker into your workflow. List meetings, get transcripts and summaries, and manage team members and teams. Can also trigger workflows when new meeting content is ready. |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | +## Tools |
| 20 | + |
| 21 | +### `fathom_list_meetings` |
| 22 | + |
| 23 | +List recent meetings recorded by the user or shared to their team. |
| 24 | + |
| 25 | +#### Input |
| 26 | + |
| 27 | +| Parameter | Type | Required | Description | |
| 28 | +| --------- | ---- | -------- | ----------- | |
| 29 | +| `apiKey` | string | Yes | Fathom API Key | |
| 30 | +| `includeSummary` | string | No | Include meeting summary \(true/false\) | |
| 31 | +| `includeTranscript` | string | No | Include meeting transcript \(true/false\) | |
| 32 | +| `includeActionItems` | string | No | Include action items \(true/false\) | |
| 33 | +| `includeCrmMatches` | string | No | Include linked CRM matches \(true/false\) | |
| 34 | +| `createdAfter` | string | No | Filter meetings created after this ISO 8601 timestamp | |
| 35 | +| `createdBefore` | string | No | Filter meetings created before this ISO 8601 timestamp | |
| 36 | +| `recordedBy` | string | No | Filter by recorder email address | |
| 37 | +| `teams` | string | No | Filter by team name | |
| 38 | +| `cursor` | string | No | Pagination cursor from a previous response | |
| 39 | + |
| 40 | +#### Output |
| 41 | + |
| 42 | +| Parameter | Type | Description | |
| 43 | +| --------- | ---- | ----------- | |
| 44 | +| `meetings` | array | List of meetings | |
| 45 | +| ↳ `title` | string | Meeting title | |
| 46 | +| ↳ `recording_id` | number | Unique recording ID | |
| 47 | +| ↳ `url` | string | URL to view the meeting | |
| 48 | +| ↳ `share_url` | string | Shareable URL | |
| 49 | +| ↳ `created_at` | string | Creation timestamp | |
| 50 | +| ↳ `transcript_language` | string | Transcript language | |
| 51 | +| `next_cursor` | string | Pagination cursor for next page | |
| 52 | + |
| 53 | +### `fathom_get_summary` |
| 54 | + |
| 55 | +Get the call summary for a specific meeting recording. |
| 56 | + |
| 57 | +#### Input |
| 58 | + |
| 59 | +| Parameter | Type | Required | Description | |
| 60 | +| --------- | ---- | -------- | ----------- | |
| 61 | +| `apiKey` | string | Yes | Fathom API Key | |
| 62 | +| `recordingId` | string | Yes | The recording ID of the meeting | |
| 63 | + |
| 64 | +#### Output |
| 65 | + |
| 66 | +| Parameter | Type | Description | |
| 67 | +| --------- | ---- | ----------- | |
| 68 | +| `template_name` | string | Name of the summary template used | |
| 69 | +| `markdown_formatted` | string | Markdown-formatted summary text | |
| 70 | + |
| 71 | +### `fathom_get_transcript` |
| 72 | + |
| 73 | +Get the full transcript for a specific meeting recording. |
| 74 | + |
| 75 | +#### Input |
| 76 | + |
| 77 | +| Parameter | Type | Required | Description | |
| 78 | +| --------- | ---- | -------- | ----------- | |
| 79 | +| `apiKey` | string | Yes | Fathom API Key | |
| 80 | +| `recordingId` | string | Yes | The recording ID of the meeting | |
| 81 | + |
| 82 | +#### Output |
| 83 | + |
| 84 | +| Parameter | Type | Description | |
| 85 | +| --------- | ---- | ----------- | |
| 86 | +| `transcript` | array | Array of transcript entries with speaker, text, and timestamp | |
| 87 | +| ↳ `speaker` | object | Speaker information | |
| 88 | +| ↳ `display_name` | string | Speaker display name | |
| 89 | +| ↳ `matched_calendar_invitee_email` | string | Matched calendar invitee email | |
| 90 | +| ↳ `text` | string | Transcript text | |
| 91 | +| ↳ `timestamp` | string | Timestamp \(HH:MM:SS\) | |
| 92 | + |
| 93 | +### `fathom_list_team_members` |
| 94 | + |
| 95 | +List team members in your Fathom organization. |
| 96 | + |
| 97 | +#### Input |
| 98 | + |
| 99 | +| Parameter | Type | Required | Description | |
| 100 | +| --------- | ---- | -------- | ----------- | |
| 101 | +| `apiKey` | string | Yes | Fathom API Key | |
| 102 | +| `teams` | string | No | Team name to filter by | |
| 103 | +| `cursor` | string | No | Pagination cursor from a previous response | |
| 104 | + |
| 105 | +#### Output |
| 106 | + |
| 107 | +| Parameter | Type | Description | |
| 108 | +| --------- | ---- | ----------- | |
| 109 | +| `members` | array | List of team members | |
| 110 | +| ↳ `name` | string | Team member name | |
| 111 | +| ↳ `email` | string | Team member email | |
| 112 | +| ↳ `created_at` | string | Date the member was added | |
| 113 | +| `next_cursor` | string | Pagination cursor for next page | |
| 114 | + |
| 115 | +### `fathom_list_teams` |
| 116 | + |
| 117 | +List teams in your Fathom organization. |
| 118 | + |
| 119 | +#### Input |
| 120 | + |
| 121 | +| Parameter | Type | Required | Description | |
| 122 | +| --------- | ---- | -------- | ----------- | |
| 123 | +| `apiKey` | string | Yes | Fathom API Key | |
| 124 | +| `cursor` | string | No | Pagination cursor from a previous response | |
| 125 | + |
| 126 | +#### Output |
| 127 | + |
| 128 | +| Parameter | Type | Description | |
| 129 | +| --------- | ---- | ----------- | |
| 130 | +| `teams` | array | List of teams | |
| 131 | +| ↳ `name` | string | Team name | |
| 132 | +| ↳ `created_at` | string | Date the team was created | |
| 133 | +| `next_cursor` | string | Pagination cursor for next page | |
| 134 | + |
| 135 | + |
0 commit comments