Skip to main content
Glama

Fathom MCP Server

deploy.sh•960 B
#!/bin/bash # Fathom MCP Server Deployment Script echo "šŸš€ Deploying Fathom MCP Server to Vercel..." # Check if vercel CLI is installed if ! command -v vercel &> /dev/null; then echo "āŒ Vercel CLI not found. Installing..." npm install -g vercel fi # Check if .env.local exists if [ ! -f ".env.local" ]; then echo "āš ļø .env.local not found. Please create it with your FATHOM_API_KEY" echo " Copy .env.example to .env.local and add your API key" exit 1 fi # Build the project echo "šŸ“¦ Building project..." npm run build # Deploy to Vercel echo "🌐 Deploying to Vercel..." vercel --prod echo "āœ… Deployment complete!" echo "" echo "šŸ“‹ Next steps:" echo "1. Add FATHOM_API_KEY environment variable in Vercel dashboard" echo "2. Test your MCP server endpoint" echo "3. Configure your MCP client (Claude Desktop, Cursor, etc.)" echo "" echo "šŸ”— Your MCP server will be available at: https://your-app.vercel.app/api/mcp"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bondjacobbond/fathom-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server