# Trading MCP Server Configuration
# Exchange Selection (required)
# Supported: mexc, binance, bybit, okx, bitget, and 100+ more via CCXT
EXCHANGE=mexc
# Trading Mode (required)
# demo: Orders are simulated (safe for testing)
# live: Orders are real (use with caution)
TRADING_MODE=demo
# Market Type (required)
# spot: Spot trading
# swap: Perpetual futures/swaps
MARKET_TYPE=spot
# MEXC Exchange Credentials (optional, required for live trading)
MEXC_API_KEY=your_mexc_api_key_here
MEXC_SECRET=your_mexc_secret_key_here
# Binance Exchange Credentials (optional)
BINANCE_API_KEY=your_binance_api_key_here
BINANCE_SECRET=your_binance_secret_key_here
# Bybit Exchange Credentials (optional)
BYBIT_API_KEY=your_bybit_api_key_here
BYBIT_SECRET=your_bybit_secret_key_here
# OKX Exchange Credentials (optional)
OKX_API_KEY=your_okx_api_key_here
OKX_SECRET=your_okx_secret_key_here
OKX_PASSWORD=your_okx_password_here
# Bitget Exchange Credentials (optional)
BITGET_API_KEY=your_bitget_api_key_here
BITGET_SECRET=your_bitget_secret_key_here
BITGET_PASSWORD=your_bitget_password_here
# Logging Configuration (optional)
# Levels: trace, debug, info, warn, error, fatal
LOG_LEVEL=info
# Security Notes:
# 1. NEVER commit this file with real credentials
# 2. Use API keys WITHOUT withdrawal permission
# 3. Start with TRADING_MODE=demo for testing
# 4. Set conservative limits for live trading
# 5. Test with small amounts first