The Hyperliquid MCP Server is an implementation that integrates the Hyperliquid SDK. It provides various tools to interact with token data, including retrieving mid prices, historical candlestick data, and accessing L2 order books for tokens on the Hyperliquid platform.
1. Use the command `get_all_mids` to retrieve mid prices for all coins on Hyperliquid. 2. Use the `get_candle_snapshot` tool to get historical candlestick data for a specific token, specifying the coin symbol, time interval, and optional time range. 3. Use the `get_l2_book` to access the L2 order book for a given token by specifying the token symbol. 4. For integration with Claude Desktop, add the relevant configuration to your `claude_desktop_config.json` and use NPX for running the server.
Q: What inputs are required for `get_candle_snapshot`? A: You need to provide the token symbol, time interval (e.g., '15m', '1h'), start time (in milliseconds), and an optional end time. Q: Can I access the L2 order book for all tokens? A: Yes, you can access the L2 order book for any token by providing its symbol using the `get_l2_book` tool. Q: What is the license for Hyperliquid MCP Server? A: The server is licensed under the MIT License, allowing you to freely use, modify, and distribute the software under its terms.