.env.example•1.88 kB
# Multilead Open API Configuration
# Copy this file to .env and replace with your actual API key
# ============================================================================
# Required Configuration
# ============================================================================
# Required: Your Multilead API key
# Get your API key from: https://app.multilead.co/settings/api
MULTILEAD_API_KEY=your_multilead_api_key_here
# ============================================================================
# Multilead API Settings (Optional)
# ============================================================================
# Optional: Multilead API Base URL (default: https://api.multilead.co)
MULTILEAD_BASE_URL=https://api.multilead.co
# Optional: Request timeout in seconds (default: 30)
MULTILEAD_TIMEOUT=30
# Optional: Enable debug logging (default: false)
MULTILEAD_DEBUG=false
# ============================================================================
# Server Transport Configuration (Optional)
# ============================================================================
# Transport mode: "stdio" (default) for Claude Desktop/Code, "http" for web services
TRANSPORT=stdio
# HTTP server host (only used when TRANSPORT=http)
# Use "127.0.0.1" for localhost only, "0.0.0.0" for all interfaces
HOST=0.0.0.0
# HTTP server port (only used when TRANSPORT=http)
PORT=8000
# Logging level: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO
# Logging format: "json" (production) or "text" (development)
LOG_FORMAT=text
# ============================================================================
# Rate Limiting Configuration (Optional)
# ============================================================================
# Maximum requests per minute (default: 100)
RATE_LIMIT_PER_MINUTE=100
# Maximum requests per hour (default: 1000)
RATE_LIMIT_PER_HOUR=1000