mcpbeat

Hyperliquid Perp Market Data API MCP Server

io.github.Br0ski777/hyperliquid-data
answering

Hyperliquid Perp Market Data API is answering right now. Last checked 15 min ago. It exposes 3 tools. Last commit 18 Jul 2026.

Hyperliquid perp order book, prices, funding, OI, candles. x402 paid.

Uptime history 39 hours of history
39 hours agonow
100.0%
Uptime 24h
91 of 91 checks
3
Tools
read from the server
31 ms
Response time
average over 24h
0
Stars
last commit 18 Jul 2026

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 15 min ago.

run in your terminal
claude mcp add hyperliquid-data --transport http https://hyperliquid-data.api.klymax402.com/mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "hyperliquid-data": {
      "url": "https://hyperliquid-data.api.klymax402.com/mcp"
    }
  }
}
~/.codex/config.toml
[mcp_servers.hyperliquid-data]
url = "https://hyperliquid-data.api.klymax402.com/mcp"
.cursor/mcp.json
{
  "mcpServers": {
    "hyperliquid-data": {
      "url": "https://hyperliquid-data.api.klymax402.com/mcp"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "hyperliquid-data": {
      "url": "https://hyperliquid-data.api.klymax402.com/mcp"
    }
  }
}

Available tools 3

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

hyperliquid
hyperliquid_get_all_markets
Use this when you need a snapshot of all Hyperliquid perpetual markets at once. Returns pricing, funding, and volume data for every listed asset in a single call. POST variant of hyperliquid_get_all_markets -- same params passed as JSON body instead of query string. 1. markets: array of all listed perp assets 2. Each market contains: coin, midPrice, markPrice, fundingRate, openInterest, volume24h, dayChange 3. totalMarkets: number of listed perp markets 4. timestamp: data timestamp in ISO format Example output: {"markets":[{"coin":"BTC","midPrice":67450,"fundingRate":0.00008,"openInterest":1250000000,"volume24h":3400000000,"dayChange":2.3},{"coin":"ETH","midPrice":3520,"fundingRate":0.00012,"openInterest":890000000,"volume24h":1200000000,"dayChange":1.1}],"totalMarkets":148} Use this FOR screening all Hyperliquid markets, finding highest funding rates, or building a market overview dashboard. Do NOT use for a single coin order book -- use hyperliquid_get_market_data. Do NOT use for spot DEX quotes -- use dex_get_swap_quote. Do NOT use for vault performance -- use hyperliquid_get_vault_data.
hyperliquid_get_candles
Use this when you need historical OHLCV candlestick data for a Hyperliquid perpetual pair. Returns open, high, low, close, volume for the specified interval. POST variant of hyperliquid_get_candles -- same params passed as JSON body instead of query string. 1. candles: array of OHLCV bars 2. Each candle contains: timestamp, open, high, low, close, volume 3. coin: the coin symbol queried 4. interval: the candle interval used 5. count: number of candles returned Example output: {"coin":"BTC","interval":"1h","count":100,"candles":[{"timestamp":"2026-04-13T10:00:00Z","open":67200,"high":67550,"low":67100,"close":67450,"volume":45000000}]} Use this FOR technical analysis, backtesting strategies, or charting price history on Hyperliquid perps. Do NOT use for real-time order book -- use hyperliquid_get_market_data. Do NOT use for spot DEX quotes -- use dex_get_swap_quote. Do NOT use for whale tracking -- use hyperliquid_track_whale_positions.
hyperliquid_get_market_data
Use this when you need Hyperliquid perpetual futures data for a specific coin. Returns full L2 order book depth with real-time pricing and funding metrics in one call. POST variant of hyperliquid_get_market_data -- same params passed as JSON body instead of query string. 1. bids: array of bid levels with price and size 2. asks: array of ask levels with price and size 3. midPrice: current mid price between best bid/ask 4. markPrice: oracle mark price used for liquidations 5. fundingRate: current hourly funding rate (e.g. 0.0001 = 0.01%) 6. openInterest: total open interest in USD 7. volume24h: 24-hour trading volume in USD Example output: {"midPrice":67450.5,"markPrice":67448.2,"fundingRate":0.00008,"openInterest":1250000000,"volume24h":3400000000,"bids":[{"price":67450,"size":12.5}],"asks":[{"price":67451,"size":8.3}]} Use this BEFORE placing trades on Hyperliquid. Essential for checking spread, depth, and funding before entering a position. Do NOT use for EVM gas -- use gas_get_current_price. Do NOT use for spot DEX quotes -- use dex_get_swap_quote. Do NOT use for whale positions -- use hyperliquid_track_whale_positions.

Endpoints

URLTransportStateLatencyChecked
https://hyperliquid-data.api.klymax402.com/mcp sse answering 24 ms 15 min ago

Hyperliquid Perp Market Data API — questions

Answers built from our own checks of this server.

What can Hyperliquid Perp Market Data API do?
It exposes 3 tools, read directly from the server on our last check. Among them: hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Hyperliquid Perp Market Data API working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 91 of 91 checks got a reply (100.0%), average response time 31 ms. The bar chart above shows every period we have measured.
How do I connect Hyperliquid Perp Market Data API?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Hyperliquid Perp Market Data API need an API key?
No. Hyperliquid Perp Market Data API completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 3 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Hyperliquid Perp Market Data API?
It answers our handshake in 31 ms on average, which is faster than 99% of all working MCP servers we measure. That puts it in the quick quarter of the ecosystem. The comparison comes from our own checks across the whole registry, every 15 minutes.
Is Hyperliquid Perp Market Data API open source?
Yes — it is published under the MIT licence, written in TypeScript and 0 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.