Liquidiction
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HL_API_URL | No | Hyperliquid API endpoint. Set to https://api.hyperliquid.xyz for mainnet data. | https://api.hyperliquid-testnet.xyz |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_marketsA | List all prediction markets with current prices |
| get_orderbookB | Get order book for a specific outcome side |
| get_pricesB | Get current mid prices for all outcome coins |
| get_user_fillsB | Get trade history for a user address |
| get_open_ordersC | Get open orders for a user address |
| get_user_positionsB | Get current outcome share positions for a user |
| get_market_detailB | Get detailed info about a specific market outcome |
| get_candlesB | Get OHLCV candle data for a prediction market outcome |
| get_recent_tradesB | Get recent trades for a prediction market outcome |
| get_market_summaryA | Get a rich overview of all markets with probabilities, settlement status, and parsed metadata |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool targets a distinct data type (candles, market details, orders, etc.) with clear descriptions, though some overlap exists between get_market_detail, get_market_summary, and get_prices. Overall, an agent can distinguish them.
All tools follow a consistent verb_noun pattern with 'get_' except one using 'list_', which still aligns with a verb+noun convention. No mixing of styles or ambiguous verbs.
10 tools is well-scoped for a read-only prediction market data server. Each tool serves a specific data retrieval need without unnecessary duplication or gaps.
The set covers all essential read operations for prediction markets: listing, details, prices, orderbook, user data. Minor gaps exist, such as aggregated market statistics or historical trade summaries, but core workflows are supported.