.env.exampleā¢559 B
# Environment Variables Example
# Copy this file to .env and fill in your values
# Server Configuration
MCP_SERVER_NAME="flight-simulator"
MCP_SERVER_VERSION="0.1.0"
# Transport Configuration (for remote deployment)
MCP_TRANSPORT="stdio" # Options: stdio, sse
MCP_HOST="localhost"
MCP_PORT="8080"
# Security
API_TOKEN="your-secure-token-here"
# Mock Data Settings
MOCK_DELAY_PROBABILITY=0.1 # 10% chance of flight delays
MOCK_CANCELLATION_PROBABILITY=0.02 # 2% chance of cancellations
# Logging
LOG_LEVEL="INFO" # Options: DEBUG, INFO, WARNING, ERROR