# Supabase MCP Server - Beispielkonfiguration
# Kopieren Sie diese Datei nach .env und passen Sie die Werte an
# Erforderliche Supabase-Konfiguration
SUPABASE_ACCESS_TOKEN=your_access_token_here
SUPABASE_PROJECT_REF=your_project_ref_here
# Server-Konfiguration
MCP_PORT=3333
NODE_ENV=development
# Features
# Verfügbare Features: database,docs,development,functions,account,debug,branching,storage
MCP_FEATURES=database,docs,development,functions,account,debug,branching,storage
# Sicherheit
MCP_READ_ONLY=false
MCP_API_KEYS=your-secret-key1,your-secret-key2
MCP_ALLOWED_ORIGINS=*
# Rate Limiting
MCP_RATE_LIMIT_REQUESTS=100
MCP_RATE_LIMIT_GENERAL=60
# Logging
NODE_LOG_LEVEL=info
DEBUG=mcp:*
# Experimentelle Features
NODE_OPTIONS="--experimental-global-webcrypto"
EXPRESS_TRUST_PROXY=1