# n8n Documentation MCP Remote Server Configuration # Remote Server Configuration MCP_PORT=3000 MCP_HOST=0.0.0.0 MCP_DOMAIN=n8ndocumentation.aiservices.pl # Authentication (REQUIRED for production) # Generate a secure token: openssl rand -hex 32 MCP_AUTH_TOKEN=your-secure-auth-token-here # CORS - Enable for browser-based access MCP_CORS=true # TLS Configuration (optional but recommended for production) # MCP_TLS_CERT=/path/to/cert.pem # MCP_TLS_KEY=/path/to/key.pem # Database Configuration NODE_DB_PATH=/app/data/nodes-v2.db # Node.js Environment NODE_ENV=production # Logging MCP_LOG_LEVEL=info # Legacy n8n Configuration (not used in v2) # N8N_BASIC_AUTH_USER=admin # N8N_BASIC_AUTH_PASSWORD=your-secure-password-here # N8N_HOST=localhost # N8N_API_KEY=your-api-key-here