by mektigboy
server-hyperliquid is an MCP (Multi-Chain Protocol) server implementation that integrates with the Hyperliquid SDK. It provides a way to access real-time and historical exchange data from Hyperliquid, a decentralized perpetual exchange.
server-hyperliquid
is an MCP (Multi-Chain Protocol) server implementation that integrates with the Hyperliquid SDK. It provides a way to access real-time and historical exchange data from Hyperliquid, a decentralized perpetual exchange.
To use server-hyperliquid
, you can add it to your claude_desktop_config.json
file under the mcpServers
section. An example configuration is provided in the README, showing how to use npx
to run the server:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@mektigboy/server-hyperliquid"]
}
}
}
Once configured, you can interact with the server to retrieve data using the exposed tools.
server-hyperliquid
offers the following key tools for accessing Hyperliquid data:
get_all_mids
: Retrieves mid prices for all available coins on Hyperliquid.get_candle_snapshot
: Fetches historical candlestick data for any specified token. This tool requires coin
, interval
, and startTime
as inputs, with an optional endTime
.get_l2_book
: Provides access to the Level 2 order book for a given token, requiring the symbol
as input.server-hyperliquid
can be used for various applications requiring Hyperliquid exchange data, including:
Q: What is Hyperliquid? A: Hyperliquid is a decentralized perpetual exchange.
Q: What is an MCP server? A: An MCP (Multi-Chain Protocol) server is a component that allows integration with various blockchain-related services and data sources.
Q: What kind of data can I get from server-hyperliquid
?
A: You can retrieve mid prices, historical candlestick data, and Level 2 order book data for tokens on Hyperliquid.
Q: Is server-hyperliquid
open source?
A: Yes, it is licensed under the MIT License, meaning it is free to use, modify, and distribute.
An MCP server implementation that integrates the Hyperliquid SDK.
get_all_mids
get_candle_snapshot
coin
(string): Token symbolinterval
(string): Time interval (e.g., '15m', '1h')startTime
(number): Start time in milliseconds since epochendTime
(number, optional): End time in milliseconds since epochget_l2_book
symbol
(string): Token symbolAdd this to your claude_desktop_config.json
:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@mektigboy/server-hyperliquid"]
}
}
}
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Reviews feature coming soon
Stay tuned for community discussions and feedback