#!/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