A Model Context Protocol (MCP) server for Hyperliquid perpetual trading using the official Python SDK. This server provides AI assistants with secure, reliable access to Hyperliquid's trading platform.
✅ Official SDK - Built on the official Hyperliquid Python SDK with proper signing
✅ Complete Coverage - All trading endpoints: orders, positions, market data, vaults
✅ Secure - Proper EIP-712 signing with agent mode support
✅ Bracket Orders - Atomic entry + TP + SL order placement
✅ Market Data - Real-time prices, order books, funding rates, candles
✅ Account Management - Positions, balances, fills, funding history
✅ Testnet Support - Test strategies safely before going live
# Install and run directly from PyPI
uvx --from mcp-hyperliquid hyperliquid-mcp# Install with pip
pip install mcp-hyperliquid
# Run
mcp-hyperliquid# Clone and install from source
git clone https://github.com/edkdev/hyperliquid-mcp.git
cd hyperliquid-mcp
uv sync
# Run locally
uv run python -m hyperliquid_mcp.serverIf you're running from source code locally, use this configuration:
{
"mcpServers": {
"hyperliquid": {
"command": "uv",
"args": [
"--directory",
"/path/to/hyperliquid-mcp",
"run",
"python",
"-m",
"hyperliquid_mcp.server"
],
"env": {
"HYPERLIQUID_PRIVATE_KEY": "0x1234567890abcdef...",
"HYPERLIQUID_TESTNET": "false"
}
}
}
}Replace /path/to/hyperliquid-mcp with the actual path to your cloned repository.
IMPORTANT: Your wallet must be registered on Hyperliquid before trading.
Mainnet:
- Go to https://app.hyperliquid.xyz
- Connect your wallet
- Deposit funds from Arbitrum One (any amount registers your wallet)
Testnet:
- Go to https://app.hyperliquid-testnet.xyz
- Connect your wallet
- Get testnet funds from the faucet or bridge
Environment variables are now configured directly in your MCP client settings (no .env file needed).
Add to your mcp.json configuration file:
{
"mcpServers": {
"hyperliquid": {
"command": "uvx",
"args": ["--from", "mcp-hyperliquid", "hyperliquid-mcp"],
"env": {
"HYPERLIQUID_PRIVATE_KEY": "0x1234567890abcdef...",
"HYPERLIQUID_TESTNET": "false"
}
}
}
}Required Environment Variables:
HYPERLIQUID_PRIVATE_KEY- Your wallet's private key for signing transactions
Optional Environment Variables:
HYPERLIQUID_ACCOUNT_ADDRESS- For agent/API wallet mode (advanced)HYPERLIQUID_TESTNET- Set to "true" for testnet, "false" or omit for mainnetHYPERLIQUID_VAULT_ADDRESS- For vault trading
{
"mcpServers": {
"hyperliquid": {
"command": "uvx",
"args": ["--from", "mcp-hyperliquid", "hyperliquid-mcp"],
"env": {
"HYPERLIQUID_PRIVATE_KEY": "0x1234567890abcdef...",
"HYPERLIQUID_ACCOUNT_ADDRESS": "0xYourTradingAccountAddress...",
"HYPERLIQUID_TESTNET": "false",
"HYPERLIQUID_VAULT_ADDRESS": "0xVaultAddress..."
}
}
}
}Configure according to your client's documentation, using:
- Command:
uvxorpython - Args:
["--from", "mcp-hyperliquid", "hyperliquid-mcp"]or["-m", "hyperliquid_mcp.server"] - Environment: Add the required environment variables in your client's env configuration
hyperliquid_get_account_info- Get complete account summaryhyperliquid_get_positions- Get all open positionshyperliquid_get_balance- Get account balance and withdrawable amount
hyperliquid_place_order- Place a single orderhyperliquid_place_bracket_order- Place entry + TP + SL atomicallyhyperliquid_cancel_order- Cancel a specific orderhyperliquid_cancel_all_orders- Cancel all open ordershyperliquid_modify_order- Modify an existing orderhyperliquid_place_twap_order- Place TWAP order (coming soon)hyperliquid_cancel_twap_order- Cancel TWAP order (coming soon)
hyperliquid_get_open_orders- Get all open ordershyperliquid_get_order_status- Get status of specific orderhyperliquid_get_user_fills- Get trade fill historyhyperliquid_get_user_funding- Get funding payment history
hyperliquid_get_meta- Get exchange metadata (assets, leverage, etc.)hyperliquid_get_all_mids- Get current mid prices for all assetshyperliquid_get_order_book- Get order book depthhyperliquid_get_recent_trades- Get recent tradeshyperliquid_get_historical_funding- Get funding rate historyhyperliquid_get_candles- Get OHLCV candle data
hyperliquid_vault_details- Get vault detailshyperliquid_vault_performance- Get vault performance metrics
hyperliquid_get_server_time- Get server timestamp
Show me my Hyperliquid account balance
The AI will call hyperliquid_get_balance and show you:
- Account value
- Margin used
- Withdrawable amount
- Available balance
What's the current price of SOL on Hyperliquid? Show me the order book too.
The AI will:
- Call
hyperliquid_get_metato find SOL's index - Call
hyperliquid_get_all_midsfor current price - Call
hyperliquid_get_order_bookfor depth
Place a bracket order on Hyperliquid:
- Pair: SOL-USD
- Side: BUY (LONG)
- Size: 4.12 SOL (~$900)
- Entry: $218.00
- Target: $219.50 (+0.7%)
- Stop Loss: $216.80 (-0.8%)
The AI will:
- Call
hyperliquid_get_metato get SOL's asset index (5) - Call
hyperliquid_place_bracket_orderwith:- asset: 5
- isBuy: true
- size: "4.12"
- entryPrice: "218.00"
- takeProfitPrice: "219.50"
- stopLossPrice: "216.80"
This places 3 orders atomically:
- Entry order at $218.00
- Take profit trigger at $219.50 (reduce-only)
- Stop loss trigger at $216.80 (reduce-only)
Show me my open positions. If I have a SOL position, close it at market price.
The AI will:
- Call
hyperliquid_get_positions - If SOL position exists, call
hyperliquid_place_orderwith:- Opposite side (sell if long, buy if short)
- Market order (price = "0")
- Reduce-only enabled
Show me my last 50 trades from the past 24 hours
The AI will:
- Calculate timestamps (now - 24h to now)
- Call
hyperliquid_get_user_fillswith time range - Format and display the results
Use hyperliquid_get_meta to get the full list. Common assets:
| Index | Asset | Index | Asset | Index | Asset |
|---|---|---|---|---|---|
| 0 | BTC | 1 | ETH | 5 | SOL |
| 10 | LTC | 11 | ARB | 14 | SUI |
| 18 | LINK | 25 | XRP | 27 | APT |
order_type = {"limit": {"tif": "Gtc"}}price = "0" # Setting price to 0 makes it a market order
order_type = {"limit": {"tif": "Ioc"}}order_type = {
"trigger": {
"triggerPx": "100.5", # Trigger price
"isMarket": False, # False for limit, True for market
"tpsl": "tp" # "tp" for take profit, "sl" for stop loss
}
}Problem: Your wallet isn't registered on Hyperliquid.
Solution:
- Go to app.hyperliquid.xyz (or testnet URL)
- Connect your wallet
- Deposit any amount from Arbitrum
- This registers your wallet
Problem: Your order size is too small.
Solution: Ensure size * price >= $10
Example:
- SOL at $200: Need at least 0.05 SOL
- BTC at $50,000: Need at least 0.0002 BTC
Problem: Private key mismatch or signing error.
Solution:
- Check your HYPERLIQUID_PRIVATE_KEY is correct
- Ensure it matches the wallet address you registered
- If using agent mode, verify HYPERLIQUID_ACCOUNT_ADDRESS
Agent mode allows an API wallet to sign transactions for a different trading account.
Use case: Keep your main account safe while allowing an API wallet to trade.
Setup:
HYPERLIQUID_PRIVATE_KEY=0xApiWalletPrivateKey...
HYPERLIQUID_ACCOUNT_ADDRESS=0xMainTradingAccountAddress...Requirements:
- Both wallets must be registered on Hyperliquid
- Main account must approve the API wallet as an agent
- Use
approve_agentaction through Hyperliquid UI first
- Never commit private keys - Always use environment variables
- Use testnet first - Test strategies before going live
- Set up stop losses - Use bracket orders for risk management
- Monitor positions - Regularly check your account
- Use agent mode - For production, keep main account key offline
- Start small - Test with minimum order sizes first
# Check Python version
python --version # Should be 3.10+
# Check dependencies
uv sync
# Check environment variables
cat .env
# Run with debug logging
HYPERLIQUID_LOG_LEVEL=DEBUG uvx --from mcp-hyperliquid hyperliquid-mcp- Check wallet is registered (see error handling)
- Verify order size meets $10 minimum
- Check you have sufficient balance
- Ensure asset index is correct (use
get_meta)
Use the hyperliquid_get_meta tool to get all asset indices
The AI will show you the complete list of tradeable assets with their indices.
# Clone the repository
git clone https://github.com/edkdev/hyperliquid-mcp.git
cd hyperliquid-mcp
# Install dependencies
uv sync
# Run locally
uv run python -m hyperliquid_mcp.server
# Run tests (when available)
uv run pytesthyperliquid-mcp/
├── src/
│ └── hyperliquid_mcp/
│ ├── __init__.py
│ └── server.py # Main MCP server implementation
├── pyproject.toml # Project configuration
├── README.md # This file
└── .env.example # Environment template
- Telegram Group - Get help, share strategies, and connect with other traders
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
MIT License - see LICENSE file for details
- Issues: Open an issue on GitHub
- Hyperliquid Support: https://hyperliquid.gitbook.io/hyperliquid-docs/help/support
- MCP Documentation: https://modelcontextprotocol.io/
This software is provided "as is" without warranty. Trading cryptocurrencies carries significant risk. Only trade with funds you can afford to lose. The authors are not responsible for any trading losses.
Happy Trading! 🚀