Skip to main content
Glama
start-https-dev.sh1.06 kB
#!/bin/bash # Script to start the MCP server with HTTPS and Cloudflare tunnel for development echo "🚀 Starting Umbrella MCP Server with HTTPS (Development Mode)" echo "============================================================" # Check if cloudflared is installed if ! command -v cloudflared &> /dev/null; then echo "❌ Error: cloudflared is not installed" echo "Please install it first: brew install cloudflared" exit 1 fi # Update config to use HTTPS transport and enable tunnel echo "📝 Updating configuration for HTTPS mode..." node -e " const fs = require('fs'); const config = JSON.parse(fs.readFileSync('config.json', 'utf8')); config.server.transport = 'https'; config.server.debug = true; config.server.production = false; config.cloudflare.enabled = true; fs.writeFileSync('config.json', JSON.stringify(config, null, 2)); console.log('✅ Configuration updated'); " # Build the project echo "🔨 Building TypeScript..." npm run build # Start the server echo "🌐 Starting HTTPS server with OAuth..." npm run start:https

Latest Blog Posts

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/daviddraiumbrella/invoice-monitoring'

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