Skip to main content
Glama
dj-pearson

Supabase Coolify MCP Server

by dj-pearson
start-mcp.sh870 B
#!/bin/bash # MCP Server Wrapper - Loads .env and starts server # Location: supabase-coolify-mcp-server/start-mcp.sh # Change to script directory cd "$(dirname "$0")" # Load .env file if [ -f .env ]; then # Read .env file, skip comments and empty lines, strip quotes while IFS='=' read -r key value; do # Skip comments and empty lines [[ $key =~ ^#.*$ ]] && continue [[ -z "$key" ]] && continue # Remove leading/trailing whitespace key=$(echo "$key" | xargs) value=$(echo "$value" | xargs) # Remove surrounding quotes (both single and double) value="${value%\"}" value="${value#\"}" value="${value%\'}" value="${value#\'}" # Export the variable export "$key=$value" done < .env fi # Start the MCP server node dist/index.js

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/dj-pearson/supabase-coolify-mcp-server'

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