We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Shivbaj/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Production Environment Configuration
# Copy this file to .env.production and update values for production deployment
# DO NOT commit this file to the repository
# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
SERVER_TIMEOUT=30.0
SERVER_RETRY_COUNT=3
HEALTH_CHECK_INTERVAL=300
MAX_CONNECTIONS=100
# Environment
ENVIRONMENT=production
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE_PATH=/var/log/weather-mcp/server.log
LOG_MAX_FILE_SIZE=10485760
LOG_BACKUP_COUNT=5
LOG_ENABLE_CONSOLE=false
# Security Configuration (CHANGE THESE VALUES!)
ENABLE_CORS=true
ALLOWED_ORIGINS=https://yourdomain.com,https://api.yourdomain.com
API_KEY_REQUIRED=true
API_KEY=your-secure-production-api-key-here
RATE_LIMIT_PER_MINUTE=100
REQUEST_SIZE_LIMIT=1048576
# Orchestrator Configuration
LLM_MODEL=llama3
MAX_CONCURRENT_REQUESTS=20
REQUEST_TIMEOUT=60.0
ENABLE_REQUEST_LOGGING=false
MAX_LOCATIONS_PER_QUERY=10
INCLUDE_RAW_DATA=false
INCLUDE_EXECUTION_LOG=false
RESPONSE_FORMAT=friendly
# Ollama Configuration (for local LLM)
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=llama3
OLLAMA_TIMEOUT=30.0
ENABLE_ADVANCED_ORCHESTRATION=true
# SSL Configuration (uncomment and configure for HTTPS)
# SSL_CERT_PATH=/path/to/cert.pem
# SSL_KEY_PATH=/path/to/key.pem
# External Services Configuration (configure as needed)
# NWS_API_KEY=your-production-nws-api-key
# WTTR_API_KEY=your-production-wttr-api-key
# Monitoring Configuration
# PROMETHEUS_PORT=9090
HEALTH_CHECK_URL=https://yourdomain.com/health
# Production Mode Settings
DEBUG_MODE=false
ENABLE_DEV_ENDPOINTS=false