Skip to main content
The server exposes 78 tools, all read-only — they query indexed and live Hyperliquid data, and never place orders or modify state. Tools are named by group prefix, so an agent can find the right one from the domain it needs.

Groups

The public group exposes Hyperliquid data that is keyless upstream — but reaching the hosted MCP server still requires a HypeDexer API key. See Authentication.
The live and stream groups return bounded-window snapshots, not live pushes: MCP tools are request/response. For continuous streaming, use the WebSocket APIs directly.
To see the exact tool list your key can reach, call tools/list — see Client configuration.

How results are shaped

The tools are built for agents rather than for dashboards, so responses are designed to keep an agent on track instead of filling its context window.
  • Pagination is explicit. List tools return a pagination handle with a hint naming the exact next call to make, so the agent can page through results without guessing.
  • Responses are truncated at a token budget. Instead of flooding the agent’s context, a large result is cut and carries a steering note explaining what was left out and how to narrow the query.
  • Errors say how to recover. A failed call explains the fix — add a filter, top up credits, use a different key — rather than returning a bare status code. See Errors.

Credits

Each tool call bills credits from your account balance, exactly like a direct REST call. One tool call can fan out into several API requests, so it may cost more than a single REST call — the 24h market snapshot, for instance, calls five endpoints.