# Supabase MCP Server Configuration
# REQUIRED: Your Supabase Personal Access Token
# Get this from: https://supabase.com/dashboard/account/tokens
SUPABASE_ACCESS_TOKEN=your_personal_access_token_here
# RECOMMENDED: Scope to specific project for security
# Get this from: Project Settings -> General -> Project ID
SUPABASE_PROJECT_REF=your_project_ref_here
# OPTIONAL: Feature groups to enable (comma-separated)
# Available: account,docs,database,debug,development,functions,storage,branching
# Default: database,docs,development,functions
MCP_FEATURES=database,docs,development,functions
# OPTIONAL: Enable read-only mode for safety
# Default: true
MCP_READ_ONLY=true
# OPTIONAL: Port for health checks (Docker only)
# Default: 3000
MCP_PORT=3000
# OPTIONAL: Node environment
NODE_ENV=production