> ## Documentation Index
> Fetch the complete documentation index at: https://www.klavis.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Fathom

> Connect to Fathom for AI-Powered Notes and Summaries

<Info>
  **Prerequisites**
  Before you begin, [create an account](https://www.klavis.ai/home/api-keys) and get your API Key.
</Info>

## Getting started

Connect to Fathom for AI-Powered Notes and Summaries

<Tabs>
  <Tab title="API">
    <Steps>
      <Step title="Install the SDKs (optional)">
        <CodeGroup>
          ```bash pip theme={null}
          pip install klavis
          ```

          ```bash npm theme={null}
          npm install klavis
          ```
        </CodeGroup>
      </Step>

      <Step title="Create a Strata MCP Server with Fathom">
        <CodeGroup>
          ```python Python theme={null}
          from klavis import Klavis
          from klavis.types import McpServerName

          klavis_client = Klavis(api_key="YOUR_API_KEY")

          # Create a Strata MCP server with Fathom
          response = klavis_client.mcp_server.create_strata_server(
              servers=[McpServerName.FATHOM],
              user_id="user123"
          )
          ```

          ```typescript TypeScript theme={null}
          import { KlavisClient, Klavis } from 'klavis';

          const klavis = new KlavisClient({ apiKey: process.env.KLAVIS_API_KEY! });

          // Create a Strata MCP server with Fathom
          const response = await klavis.mcpServer.createStrataServer({
              servers: [Klavis.McpServerName.FATHOM],
              userId: "user123"
          });
          ```

          ```bash cURL theme={null}
          curl -X POST "https://api.klavis.ai/mcp-server/strata/create" \
            -H "Authorization: Bearer YOUR_API_KEY" \
            -H "Content-Type: application/json" \
            -d '{
              "servers": ["Fathom"],
              "userId": "user123"
            }'
          ```
        </CodeGroup>

        <Tip>
          `userId` specifies whose connected accounts and data you are accessing in Klavis. It should be a unique id for yourself, your team, or your organization.
        </Tip>

        <Card title="API Reference" icon="magnifying-glass" href="/api-reference/strata/create" horizontal>
          Full Strata API endpoints
        </Card>
      </Step>

      <Step title="Authenticate">
        <CodeGroup>
          ```python Python theme={null}
          import webbrowser

          # Open OAuth authorization page
          webbrowser.open(response.oauth_urls[McpServerName.FATHOM])
          ```

          ```typescript TypeScript theme={null}
            import open from 'open';

          // Open OAuth authorization page
          await open(response.oauthUrls[Klavis.McpServerName.FATHOM]);
          ```

          ```bash cURL theme={null}
          # Copy and paste the OAuth URL into your browser
          echo "Visit this URL to authorize: https://api.klavis.ai/oauth/fathom/authorize?instance_id=YOUR_INSTANCE_ID"
          ```
        </CodeGroup>

        <Check>
          🎉 **Your Fathom integration is ready!**
        </Check>
      </Step>
    </Steps>
  </Tab>

  <Tab title="UI">
    <Steps>
      <Step title="Open Dashboard">
        Go to your [Dashboard](https://www.klavis.ai/home/mcp-servers).
      </Step>

      <Step title="Choose Fathom">
        Select Fathom from the list of available integrations.
      </Step>

      <Step title="Authenticate">
        Complete the OAuth flow to connect your Fathom account.
      </Step>

      <Step title="Use in your app">
        Copy the MCP endpoint URL and add it to your MCP-supported client (Claude Desktop, Cursor, VS Code, etc.).
      </Step>
    </Steps>
  </Tab>

  <Tab title="Open Source">
    <Steps>
      <Step title="Clone repository (for developers to build from source)">
        ```bash theme={null}
        git clone https://github.com/klavis-ai/klavis
        cd klavis/mcp_servers/fathom
        ```
      </Step>

      <Step title="Run with Docker">
        ```bash theme={null}
        # Pull the Docker image
        docker pull ghcr.io/klavis-ai/fathom-mcp-server:latest

        # Run with OAuth support (requires Klavis API key)
        docker run -p 5000:5000 \
          -e KLAVIS_API_KEY=$KLAVIS_API_KEY \
          ghcr.io/klavis-ai/fathom-mcp-server:latest

        # Or run with manual API key
        docker run -p 5000:5000 \
          -e AUTH_DATA='{"access_token":"your_fathom_api_key"}' \
          ghcr.io/klavis-ai/fathom-mcp-server:latest
        ```
      </Step>

      <Step title="Configure MCP client">
        ```json theme={null}
        {
          "mcpServers": {
            "fathom": {
              "url": "http://localhost:5000/mcp/"
            }
          }
        }
        ```
      </Step>
    </Steps>
  </Tab>
</Tabs>

## Available Tools

<Tip>
  With our progressive discovery approach, Klavis System is capable of enabling all tools for Fathom. Please use the [get\_tools](https://www.klavis.ai/docs/api-reference/mcp-server/get-tools) API for more details. If you find any tool that is missing, please reach out to [contact@klavis.ai](mailto:contact@klavis.ai).
</Tip>

## Next Steps

<CardGroup>
  <Card title="AI Platform Integrations" icon="robot" href="/ai-platform-integration/overview">
    Integrate Klavis MCP Servers with leading AI platforms
  </Card>

  <Card title="Integrations" icon="puzzle-piece" href="/mcp-server/overview">
    Explore available MCP servers
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    REST endpoints and schemas
  </Card>

  <Card title="White-label Authentication" icon="palette" href="/auth/white-label">
    Customize OAuth flows with your own branding
  </Card>
</CardGroup>
