mcpbeat Sign in

Hyperliquid Perp Market Data API MCP Server

not responding

Hyperliquid Perp Market Data API is listed as active in the registry but did not answer our last check. It exposes 3 tools. Last commit 2 Sep 2026.

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

Uptime history 51 days of history · worst day 0%
51 days agonow
0.0%
Uptime 24h
0 of 91 checks
3
Tools
read from the server
58 ms
Response time
average over 24h
0
Stars
last commit 2 Sep 2026

What changed 10956

Every tool that appeared, vanished or quietly changed what it asks for. Recorded since 8 August 2026. No other catalogue keeps this.

17 Sep 3 tool descriptions were rewritten213 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
16 Sep 3 tool descriptions were rewritten276 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
15 Sep 3 tool descriptions were rewritten273 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
14 Sep 3 tool descriptions were rewritten273 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
13 Sep 3 tool descriptions were rewritten276 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
12 Sep 3 tool descriptions were rewritten273 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
11 Sep 3 tool descriptions were rewritten270 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
10 Sep 3 tool descriptions were rewritten279 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
9 Sep 3 tool descriptions were rewritten273 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
8 Sep 3 tool descriptions were rewritten273 times that day hyperliquid_get_all_markets, hyperliquid_get_candles, hyperliquid_get_market_data
and 10926 more, back to 8 August 2026

Hyperliquid Perp Market Data API does not always answer

Over the last week it answered 29.7% of our checks. We check every 15 minutes, so you hear about the next outage within the hour — not from your users.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 7 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 58 ms 7 min ago

Alternatives to Hyperliquid Perp Market Data API

same job, measured the same way
Pa1m Hyperliquid
by retampweb

Hyperliquid DEX data: prices, order books, candles, funding rates, portfolios. Pay-per-call, x402.

14 tools answering
Hyperliquid MCP
by kitsune-de

Read-only Hyperliquid data: markets, funding rates, order books, candles, positions and fills

36 installs/wk local only
Hyperliquid Info MCP
by glebenjoy

Hyperliquid perp & spot data: prices, funding, open interest, order book, positions. No API key.

30 installs/wk local only
Market Data
by iturri

Verified market data for AI trading agents: quality-flagged candles, funding, OI, order flow. x402.

22 tools answering
0xArchive Market Data
by 0xarchive

Real-time & historical Hyperliquid/Lighter: L4/L2/L3, fills, funding, OI, liquidations, candles

answering
Ironflowsh
by ironflowsh

Tick-level Hyperliquid market data: fills, L4 book, funding, liquidations, smart triggers.

18 installs/wk local only
Hyperliquid / HyperEVM
by sand0vvv

Read-only Hyperliquid and HyperEVM data: yields, protocols, fees, markets, funding, depth.

34 installs/wk local only
ScalpStream
by dv1-321

Pay-per-call data over x402: air quality, border waits, fuel prices, market research.

local only

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 0 of 91 checks got a reply (0.0%), average response time 58 ms. The bar chart above shows every period we have measured.
The registry lists Hyperliquid Perp Market Data API as active — why does it not respond?
The official MCP registry stores what the author submitted; it does not verify that the server still runs. We check the endpoint ourselves, and this one does not answer. Catalogues that copy the registry without checking will show it as working.
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.
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.