Skip to main content
Glama

Hyperliquid wallet book

hl_wallet
Read-onlyIdempotent

One Hyperliquid account: live positions, equity, leverage, net bias and unrealized PnL, plus its recent whale-sized fills. The live book is public on Hyperliquid so it stays keyless; computed history (win rates, cadence, realized PnL) and the full fill trail need a developer plan. Descriptive market data only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax recent fills returned for this account. Defaults to 50, hard ceiling 200 for everyone and no plan raises it. Keyless calls receive 3 of them whatever is asked for, and the live positions come back either way.
addressYesHyperliquid account address, 0x followed by 40 hex characters. Required. Every hl_whales row carries the wallet that filled it, so it can be passed straight in. An address outside the tracked set answers tracked:false, which is a coverage fact and not an account holding nothing.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoOne line saying what the numbers cover, or why there are none. Read it before reporting any zero as a market reading.
errorNoinvalid_address when the address is not 0x plus 40 hex characters. Nothing was looked up.
cappedNoPresent only when an argument was cut down to a ceiling. Absent means nothing was clamped, so a smaller number than you asked for is the data and not a limit.
printsNoRecent whale-sized fills for this account. Keyless connections receive 3 of them whatever was asked for.
addressNoThe account address, normalised.
profileNoThe live account: what it holds, equity, dollars open, leverage, which way it leans and unrealized profit. Public on Hyperliquid, so it stays keyless.
trackedNoFalse when this account is outside the tracked set. A coverage fact, not an account holding nothing.
access_noteNoWhat this connection could not return and what lifts it. Always pass this on to the user: it is the only place that information appears.
locked_layersNoKeyless only: which computed blocks a developer plan adds.

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (read-only, idempotent, non-destructive), the description discloses access-tier behavior: live book is public and keyless, while computed history and the full fill trail require a developer plan. It also clarifies that 'Descriptive market data only' indicates non-actionable data. Additionally, the parameter description (in the schema, integrated here) explains keyless calls receive only 3 fills regardless of request, which is a concrete behavioral trait. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core function and data fields, followed by access-tier and data-type context. Every clause contributes meaningful information ('Descriptive market data only' adds a clarity caveat). It is efficient without being terse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has an output schema, so return formats are documented separately. The description covers the main payload components (positions, equity, PnL, fills), the access-tier distinction (keyless vs. developer plan), and the data's descriptive nature. It also leverages the parameter descriptions to clarify edge cases. This is complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema description coverage is 100%, and both parameters have detailed descriptions in the schema itself (e.g., address format, limit defaults/ceiling, keyless behavior, tracked:false semantics). The tool's description text does not add significant parameter-level information beyond what the schema already provides, so a baseline of 3 is appropriate when schema carries the load.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'One Hyperliquid account' and enumerates the exact data provided: live positions, equity, leverage, net bias, unrealized PnL, and recent whale-sized fills. This clearly identifies the resource and scope, distinguishing it from sibling tools like hl_whales that likely cover multiple accounts. The purpose is specific and immediately understandable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context on access tiers ('The live book is public on Hyperliquid so it stays keyless; computed history ... and the full fill trail need a developer plan'), which helps users know what to expect. However, it does not explicitly name alternative tools or state when not to use this tool. The 'One Hyperliquid account' phrasing implies use for single-account queries, but an explicit alternative (e.g., hl_whales for many wallets) is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation3/5

Many tools share the same broad purpose domains, such as market_digest vs market_overview vs market_snapshot and whale_context vs whale_profile vs whale_flow, making selection genuinely ambiguous for an agent. The long descriptions help separate them, but the sheer number of overlapping 'one-call' market and whale views still invites misselection, and whale_tape is a direct duplicate alias.

Naming Consistency4/5

Names are consistently snake_case and mostly follow a clear domain-prefix pattern: market_*, whale_*, hl_*, defi_*. Minor deviations like liquidations vs market_liquidations, liq_zones, my_access, and the deprecated whale_tape keep it from a perfect score, but the overall convention is predictable and readable.

Tool Count2/5

With 30 tools, the server exceeds the reasonable upper bound and feels heavy even for a broad data domain. Many tools could be consolidated—for instance, several one-call market summary tools and multiple whale-flow variants—without losing capability.

Completeness4/5

The tool set covers an impressively wide range of whale and market data: news, liquidations, funding, DEX activity, Hyperliquid wallets, market scans, history, and plan access. There are minor gaps such as no general price/OHLC history or per-wallet trade history beyond swaps and fills, but agents can work around these using the existing surface.

Resources