🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@mindstone/mcp-server-fathom

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mindstone/mcp-server-fathom

Fathom AI meeting transcription MCP server for Model Context Protocol hosts

latest
Source
npmnpm
Version
0.2.3
Version published
Maintainers
1
Created
Source

@mindstone/mcp-server-fathom

npm version License: FSL-1.1-MIT

Fathom AI meeting transcription MCP server for Model Context Protocol hosts. List and search meetings, view meeting details, read transcripts, and manage teams through a standardised MCP interface.

Requirements

  • Node.js 20+
  • npm

Quick Start

Install & build

cd <path-to-repo>/connectors/fathom
npm install
npm run build

npx (once published)

npx -y @mindstone/mcp-server-fathom

Local

node dist/index.js

Configuration

Environment variables

  • FATHOM_API_KEY — Fathom API key (from fathom.video settings)
  • MCP_HOST_BRIDGE_STATE — optional path to a host bridge state file used for credential management
  • MINDSTONE_REBEL_BRIDGE_STATE — backwards-compatible alias for MCP_HOST_BRIDGE_STATE

Host configuration examples

Claude Desktop / Cursor

{
  "mcpServers": {
    "Fathom": {
      "command": "npx",
      "args": ["-y", "@mindstone/mcp-server-fathom"],
      "env": {
        "FATHOM_API_KEY": "your-api-key"
      }
    }
  }
}

Local development (no npm publish needed)

{
  "mcpServers": {
    "Fathom": {
      "command": "node",
      "args": ["<path-to-repo>/connectors/fathom/dist/index.js"],
      "env": {
        "FATHOM_API_KEY": "your-api-key"
      }
    }
  }
}

Tools (6)

Configuration

  • configure_fathom_api_key — Configure the Fathom API key

Meetings

  • list_fathom_meetings — List meetings with server-side filtering
  • get_fathom_meeting — Get details for a single meeting
  • get_fathom_transcript — Get the transcript for a meeting

Teams

  • list_fathom_teams — List all accessible teams
  • list_fathom_team_members — List members of a specific team

Licence

FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-04-08.

FAQs

Package last updated on 18 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts