First-party app
Fathom

Fathom

Read Fathom meeting recordings, transcripts, summaries, action items and downloads, list teams and users, and manage webhooks via the Fathom External API.

stable AI & Machine LearningProductivityVideo & Streaming

About

Fathom ships in the w6w first-party pack. It declares 11 actions, 2 health checks, and the host runs its code in a sandbox that never sees the credential.

App id
io.w6w.fathom
Version
0.1.2
Author
w6w
Licence
MIT
Categories
AI & Machine Learning · Productivity · Video & Streaming

Overview

Fathom is an AI meeting notetaker that joins video calls and turns them into transcripts, summaries and action items, and this app reads that output into a workflow: list meetings and recordings, pull a recording’s summary or full transcript, request and download a recording, and see the teams and users behind them.

A typical use is picking up a meeting shortly after it ends — list recent meetings, then fetch the summary or transcript for the one that matters, or request a download when the audio or video itself is needed downstream. This app also creates and deletes webhook subscriptions so a workflow can be notified as new meeting content becomes available, rather than polling for it.

Fathom’s API is small and entirely covered here: nine reads plus the two webhook writes are the whole surface. There is no action to edit or delete a recording, mark an action item complete, or control the notetaker itself — those aren’t things the vendor’s API exposes, not gaps in this app.

Build with Fathom

Three routes to the same 11 actions. The Workflow tab is generated from Fathom's own manifest and carries its real ids, so it is copy-pasteable; the Code and CLI examples are the same call for any action on any app, so every app-specific value in them is a blank you fill in.

Get Many Meetings

meeting-get-many

List meetings recorded by or shared with this account, optionally including transcripts, summaries, action items, highlights and CRM matches.

Get Many Meeting Types

meeting-type-get-many

List the org's meeting types (active and inactive) — the valid values for the meeting type filter.

Get Recording Download

recording-download-get

Poll the status of a requested recording download and read its signed file URL.

Request Recording Download

recording-download-request

Start generating a downloadable video or audio file for a recording, and get a download ID to poll.

Get Recording Summary

recording-get-summary

Fetch the AI summary for one meeting recording.

Get Recording Transcript

recording-get-transcript

Fetch the transcript for one meeting recording.

Get Many Teams

team-get-many

List the teams on this Fathom account.

Get Many Team Members

team-member-get-many

List team members, optionally filtered to one team by name.

Get Many Users

user-get-many

List account users with their settings and view permissions. Requires an account-admin API key.

Create Webhook

webhook-create

Register a URL to receive Fathom's new-meeting-content webhook, and get back its signing secret.

Delete Webhook

webhook-delete

Delete a webhook subscription by ID.

A workflow step names the app and the action, and the editor fills in the connection when you pick one. This is the Step shape from the workflow spec, carrying Fathom's real ids.

{
  "manifestVersion": "2",
  "name": "fathom-example",
  "steps": [
    {
      "id": "recording-download-get",
      "uses": {
        "app": "io.w6w.fathom",
        "action": "recording-download-get",
        "connection": "conn_YOUR_CONNECTION_ID"
      },
      "with": {
        "recordingId": "<recordingId>",
        "downloadId": "<downloadId>"
      }
    }
  ]
}

Here are some of the things you can do

  • Get Recording Download

    read
    recording-download-get
  • Get Many Meetings

    search
    meeting-get-many
  • Get Many Meeting Types

    search
    meeting-type-get-many
  • Request Recording Download

    perform
    recording-download-request
  • Get Recording Summary

    read
    recording-get-summary

+6 more actions available

Every app-specific value here is a blank you have to fill in. An app action is reached through the connection that authenticates it, so the address is a connection id, not the app id — and connections belong to your account, so a public page cannot know yours. Create one for Fathom, then fill in the three blanks: conn_YOUR_CONNECTION_ID, the action key, and the parameters that action declares. The call itself is real — the shape is transcribed from the studio's own snippet builder, which prints the same kind of blanks — but nothing in it is specific to Fathom. The Workflow tab is where this app's real ids are.

Install
npm install @w6w/sdk
yarn add @w6w/sdk
pnpm add @w6w/sdk
deno add npm:@w6w/sdk
Code
import { W6wClient, isActionRun } from "@w6w/sdk";

// Reads W6W_BASE_URL and W6W_TOKEN from the environment when omitted.
const client = new W6wClient();

const envelope = await client.run({
  urn: "conn_YOUR_CONNECTION_ID",
  action: "recording-get-transcript",
  payload: {
    recordingId: "<value>",
    // destinationUrl: "<value>",
  },
});

if (isActionRun(envelope)) console.log(envelope.value);
Install the CLI
npm install -g @w6w/cli
CLI
w6w run conn_YOUR_CONNECTION_ID --action recording-get-transcript --payload '{"recordingId":"<value>"}'

Give an AI agent Fathom — without giving it Fathom's credentials. One MCP endpoint exposes every app, function and workflow the caller is entitled to, as tools it can discover and run. Access is granted per team while we onboard.

One tool call
{
  "name": "w6w_invoke",
  "arguments": {
    "ref": "app:io.w6w.fathom#recording-download-get",
    "input": {
      "recordingId": "<recordingId>",
      "downloadId": "<downloadId>"
    }
  }
}

Every tool names its target with a single ref. The app: form above doesn't name a connection at all — the host resolves which of the caller's Fathom connections to sign with, and refuses rather than guesses when the answer is ambiguous.

What the agent gets

Credentials it can't read

The token is attached host-side, at the moment of the call. It is never a tool argument, never in the model's context, and never in a transcript — so a prompt injection has nothing to exfiltrate.

A tool surface scoped to the caller

Tools are derived per end user from what that person has actually connected and is entitled to — not one shared bot identity carrying the union of everyone's access.

A durable workflow in one call

Multi-step work runs on the workflow engine and returns a run handle the agent can poll — retries, branching and state survive the conversation that started them.

Health-aware discovery

Fathom's declared health checks are on the surface too, so an agent can tell "the vendor is down" from "your credential expired" before it burns a retry on either.

The MCP surface is part of the hosted platform. Fathom itself is MIT, and the runtime that executes it is source-available (FSL).

Request MCP access

Health checks

Fathom declares its own checks, so its health is a property of the app rather than something the host guesses at.

service

Fathom platform status

Atlassian Statuspage rollup for status.fathom.video, with per-component detail. Unauthenticated and unsigned.

quota

API rate-limit headroom

Requests left in the current global rate-limit window, read from the RateLimit-* headers on a GET /meetings call.