# MCP Gateway environment configuration
# Copy this file to .env and update values as needed.
# Gateway Mode
# Set to 1 to enable lite mode (reduces gateway meta-tools for lower token usage)
# Recommended for production - reduces token usage from ~15k to ~3k tokens
GATEWAY_LITE_MODE=1
# =============================================================================
# OPTIONAL FEATURES
# These features are disabled by default for public/minimal deployments.
# Set to 1 to enable each feature.
# =============================================================================
# Skills System - Reusable code patterns and skill execution
# Enables: gateway_list_skills, gateway_execute_skill, Skills tab in dashboard
ENABLE_SKILLS=0
# Cipher Memory - Cross-IDE persistent memory with Qdrant vector store
# Enables: Memory tab in dashboard, /api/cipher/* routes
ENABLE_CIPHER=0
# Antigravity Usage - IDE quota tracking for Antigravity IDE
# Enables: Antigravity tab in dashboard, usage tracking service
ENABLE_ANTIGRAVITY=0
# Claude Usage Tracking - Monitor Claude API token consumption
# Enables: Claude Usage tab in dashboard, usage statistics
ENABLE_CLAUDE_USAGE=0
# =============================================================================
# FEATURE CONFIGURATION (only needed if features are enabled)
# =============================================================================
# Cipher Memory service (requires ENABLE_CIPHER=1)
CIPHER_API_URL=http://localhost:8082
# Qdrant vector store (requires ENABLE_CIPHER=1)
QDRANT_URL=https://your-qdrant-instance.example
QDRANT_API_KEY=replace-with-your-qdrant-api-key
QDRANT_COLLECTION=cipher_knowledge
QDRANT_TIMEOUT_MS=8000