We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Bichev/coinbase-chat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deploy.shβ’759 B
#!/bin/bash
echo "π Deploying Coinbase Chat MCP 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
# Build frontend first
echo "π¨ Building frontend..."
cd frontend
npm install
npm run build
cd ..
# Deploy to Vercel
echo "π Deploying to Vercel..."
vercel --prod
echo "β Deployment complete!"
echo ""
echo "π§ Next steps:"
echo "1. Set environment variables in Vercel dashboard:"
echo " - VITE_OPENAI_API_KEY (for AI functionality)"
echo " - VITE_API_URL (leave empty for production)"
echo ""
echo "2. Your app should be live at the provided URL!"
echo "3. Test the API endpoints at: https://your-domain/api/v1/health"