edkdev/hyperliquid-mcp
If you are the rightful owner of hyperliquid-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Hyperliquid MCP Server is a Model Context Protocol server designed for secure and reliable access to Hyperliquid's perpetual trading platform using the official Python SDK.
Hyperliquid MCP Server
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.
Features
✅ 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
Prerequisites
Installation
Using uvx (Recommended)
# Install and run directly from PyPI
uvx --from mcp-hyperliquid hyperliquid-mcp
Using pip
# Install with pip
pip install mcp-hyperliquid
# Run
mcp-hyperliquid
Local Development
# 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.server
Local Development Configuration
If 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.
Configuration
1. Register Your Wallet on Hyperliquid
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
2. Configure Your MCP Client
Environment variables are now configured directly in your MCP client settings (no .env file needed).
Claude Desktop / Kiro
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
Full Configuration Example
{
"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..."
}
}
}
}
Other MCP Clients
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
Available Tools
Account & Position Management
hyperliquid_get_account_info- Get complete account summaryhyperliquid_get_positions- Get all open positionshyperliquid_get_balance- Get account balance and withdrawable amount
Order Management
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)
Order Queries
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
Market Data
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
Vault Management
hyperliquid_vault_details- Get vault detailshyperliquid_vault_performance- Get vault performance metrics
Utility
hyperliquid_get_server_time- Get server timestamp
Usage Examples
Example 1: Check Account Balance
Show me my Hyperliquid account balance
The AI will call hyperliquid_get_balance and show you:
- Account value
- Margin used
- Withdrawable amount
- Available balance
Example 2: Get Market Data
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
Example 3: Place a Bracket Order
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)
Example 4: Check Positions and Close
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
Example 5: View Recent Trading Activity
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
Asset Index Reference
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 Types
Limit Order (Good-Till-Cancel)
order_type = {"limit": {"tif": "Gtc"}}
Market Order (Immediate or Cancel)
price = "0" # Setting price to 0 makes it a market order
order_type = {"limit": {"tif": "Ioc"}}
Trigger Order (Stop Loss / Take Profit)
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
}
}
Error Handling
"User or API Wallet does not exist"
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
"Order value must be at least $10"
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
"Invalid signature"
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 (Advanced)
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
Security Best Practices
- 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
Troubleshooting
Server won't start
# 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
Orders not placing
- 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)
Can't find asset
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.
Development
Local Development
# 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 pytest
Code Structure
hyperliquid-mcp/
├── src/
│ └── hyperliquid_mcp/
│ ├── __init__.py
│ └── server.py # Main MCP server implementation
├── pyproject.toml # Project configuration
├── README.md # This file
└── .env.example # Environment template
Join Our Community
- Telegram Group - Get help, share strategies, and connect with other traders
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details
Resources
Support
- Issues: Open an issue on GitHub
- Hyperliquid Support: https://hyperliquid.gitbook.io/hyperliquid-docs/help/support
- MCP Documentation: https://modelcontextprotocol.io/
Disclaimer
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! 🚀