fathom-install-auth
Install and configure Fathom SDK/CLI authentication. Use when setting up a new Fathom integration, configuring API keys, or initializing Fathom in your project. Trigger with phrases like "install fathom", "setup fathom", "fathom auth", "configure fathom API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
fathom-pack
Claude Code skill pack for Fathom (18 skills)
Installation
This skill is included in the fathom-pack plugin:
/plugin install fathom-pack@claude-code-plugins-plus
Click to copy
Instructions
Fathom Install & Auth
Overview
Set up Fathom SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- Fathom account with API access
- API key from Fathom dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @fathom/sdk
# Python
pip install fathom
Step 2: Configure Authentication
# Set environment variable
export FATHOM_API_KEY="your-api-key"
# Or create .env file
echo 'FATHOM_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Fathom dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.fathom.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { FathomClient } from '@fathom/sdk';
const client = new FathomClient({
apiKey: process.env.FATHOM_API_KEY,
});
Python Setup
from fathom import FathomClient
client = FathomClient(
api_key=os.environ.get('FATHOM_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to fathom-hello-world for your first API call.