trading-platform-mcp-mt4-co.../.env.example
2026-01-16 08:33:13 -06:00

32 lines
893 B
Plaintext

# MCP MT4 Connector Configuration
# Copy this file to .env and configure values
# ==========================================
# Server Configuration
# ==========================================
PORT=3605
NODE_ENV=development
# ==========================================
# MT4 Gateway Connection
# ==========================================
# Host where mt4-gateway is running
MT4_GATEWAY_HOST=localhost
# Port of the mt4-gateway service
MT4_GATEWAY_PORT=8081
# Authentication token for mt4-gateway
MT4_GATEWAY_AUTH_TOKEN=your-secret-token-here
# ==========================================
# Request Configuration
# ==========================================
# Timeout for requests to MT4 Gateway (ms)
REQUEST_TIMEOUT=10000
# Maximum retries for failed requests
MAX_RETRIES=3
# ==========================================
# Logging
# ==========================================
LOG_LEVEL=info