Skip to main content
Glama
dj-pearson

Supabase Coolify MCP Server

by dj-pearson
start-mcp.ps1625 B
#!/usr/bin/env pwsh # MCP Server Wrapper - Loads .env and starts server # Location: c:\Users\pears\Documents\Coolify\supabase-coolify-mcp-server\start-mcp.ps1 # Change to script directory $scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path Set-Location $scriptDir # Load .env file if (Test-Path .env) { Get-Content .env | ForEach-Object { if ($_ -match '^([^#][^=]+)=(.*)$') { $name = $matches[1].Trim() $value = $matches[2].Trim() [System.Environment]::SetEnvironmentVariable($name, $value, 'Process') } } } # 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