.env.example•1.34 kB
# =================================================
# YOUR PERSONAL METEORA DLMM MCP SERVER CONFIG
# =================================================
# Required: Solana RPC URL
# Free option (slower): https://api.mainnet-beta.solana.com
# Paid options (faster): Get from Helius, QuickNode, or Alchemy
RPC_URL=https://solana-rpc.publicnode.com
# Optional: Your wallet private key (base64 encoded)
# ⚠️ SECURITY: Keep this secret! Only you should know this value
# ✅ Leave empty for read-only operations (viewing positions/fees)
# 🔑 Required for transactions (claiming fees, adding liquidity)
WALLET_PRIVATE_KEY=
# Optional: Debug logging (true/false)
DEBUG=false
# =================================================
# HOW TO GET YOUR PRIVATE KEY:
# =================================================
# 1. Export private key from your wallet (Phantom, Solflare, etc.)
# 2. Convert to base64 format:
# - If you have array: Buffer.from([1,2,3...]).toString('base64')
# - If you have hex: Buffer.from('hexstring', 'hex').toString('base64')
# 3. Paste the base64 result above
#
# Example:
# WALLET_PRIVATE_KEY=abc123def456ghi789...
# =================================================
# Optional: Custom settings
# Maximum retries for failed RPC calls
MAX_RETRIES=3
# Timeout for RPC calls (milliseconds)
RPC_TIMEOUT=30000