{
  "info": {
    "name": "Fathom — mcp.ai",
    "description": "REST API for the Fathom MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/fathom",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fathom_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a webhook to receive new meeting content from Fathom. Use when you need to set up notifications for meeting recordings. At least one of transcript, CRM matches, summary, or action items",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"triggered_for\": \"\",\n  \"destination_url\": \"\",\n  \"include_summary\": false,\n  \"include_transcript\": false,\n  \"include_crm_matches\": false,\n  \"include_action_items\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Tool to delete an existing webhook by its ID. Use when you need to remove a webhook that is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_get_recording_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recording/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recording",
            "summary"
          ]
        },
        "description": "Tool to retrieve the AI-generated summary for a specific recording. Use when you need to access the summary of a meeting recording. Supports both synchronous mode (returns summary directly) and asynch",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"recording_id\": 0,\n  \"destination_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_get_recording_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recording/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recording",
            "transcript"
          ]
        },
        "description": "Tool to retrieve the full transcript for a specific recording. Use when you need to access the complete meeting transcript with speaker information and timestamps. Can operate synchronously (returns t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"recording_id\": 0,\n  \"destination_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_list_meetings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/meetings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "meetings"
          ]
        },
        "description": "Tool to retrieve a paginated list of meeting recordings for the authenticated user or organization. Use when you need to fetch meetings with optional filtering by dates, domains, meeting type, or reco",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teams\": \"\",\n  \"cursor\": \"\",\n  \"recorded_by\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"include_summary\": false,\n  \"include_transcript\": false,\n  \"include_crm_matches\": false,\n  \"include_action_items\": false,\n  \"calendar_invitees_domains\": \"\",\n  \"calendar_invitees_domains_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_list_team_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "members"
          ]
        },
        "description": "Tool to retrieve a paginated list of all team members in the organization. Use when you need to view team members, optionally filtered by team name or paginated using a cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fathom_list_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams"
          ]
        },
        "description": "Tool to retrieve a paginated list of all teams in the organization. Use when you need to get information about teams accessible through the API.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}