.env.example•867 B
# Hyperliquid MCP Server Configuration
# Required for trading operations (place orders, cancel orders, etc.)
# Your wallet's private key with 0x prefix
HYPERLIQUID_PRIVATE_KEY=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
# Optional: Your wallet address (will be derived from private key if not provided)
HYPERLIQUID_WALLET_ADDRESS=0xabcdef1234567890abcdef1234567890abcdef12
# Optional: Set to "true" for testnet, "false" or leave empty for mainnet
HYPERLIQUID_TESTNET=true
# Optional: Custom API URL (defaults to mainnet/testnet based on HYPERLIQUID_TESTNET)
# HYPERLIQUID_API_URL=https://api.hyperliquid.xyz
# Copy this file to .env and fill in your actual values
# NEVER commit .env files to version control!
# For Docker development, these will be automatically loaded
# For local development with uv, make sure to install python-dotenv