| # Proportion MCP Server Configuration | |
| # Copy this file to .env and set your values | |
| # Server Configuration | |
| SERVER_NAME=0.0.0.0 | |
| SERVER_PORT=7860 | |
| # Security Configuration (REQUIRED for production) | |
| # Generate a secure token: python -c "import secrets; print(secrets.token_urlsafe(32))" | |
| MCP_TOKEN=your-secure-token-here | |
| # Request Limits | |
| MAX_REQUEST_SIZE=65536 | |
| # Development Settings | |
| DEBUG=false | |
| RELOAD=false | |
| LOG_LEVEL=INFO | |
| # Example production configuration: | |
| # MCP_TOKEN=abc123xyz789secure_token_here | |
| # DEBUG=false | |
| # LOG_LEVEL=WARNING | |
| # Example development configuration: | |
| # DEBUG=true | |
| # RELOAD=true | |
| # LOG_LEVEL=DEBUG |