You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Account State**| View account, margin, positions, open orders, and portfolio |`"show my perps positions"``"what open orders do I have?"`|`host-tools getHyperliquidPositions`|
15
+
|**Account Health**| Snapshot authenticated account exposure and margin |`"check my perps account health"`|`host-tools perps.accountHealth includeExitEstimates=true`|
15
16
|**Markets**| List canonical Hyperliquid markets and asset metadata |`"show Hyperliquid markets"``"what is BTC funding?"`|`host-tools getHyperliquidMarkets`|
17
+
|**Market Radar**| Rank markets by activity and compare retained samples |`"radar for active perp markets"`|`host-tools perps.marketRadar limit=10`|
16
18
|**Prices**| Fetch one or many live perps prices |`"BTC perps price"``"price BTC ETH SOL"`|`host-tools getHyperliquidPrice '{\"asset\":\"BTC\"}'`|
17
19
|**HIP-3 Discovery**| Search HIP-3 markets and list builder-deployed DEXes |`"search HIP-3 markets for CL"``"list HIP-3 DEXes"`|`host-tools perps.hip3.search query=CL`|
@@ -25,6 +27,28 @@ Start with `host-tools --brief` and `host-tools schema <toolName>` before using
25
27
|**Data Fetching**| Fetch trades, candles, and order books into sandbox tables |`"fetch BTC candles into SQL"`|`host-tools fetchHyperliquidCandles '{\"coin\":\"BTC\",\"interval\":\"1h\"}'`|
26
28
|**SQL Analysis**| Query fetched perps data with DuckDB/SQLite-style workflows |`"query large BTC trades"`|`sql query "SELECT * FROM <table> LIMIT 10"`|
27
29
30
+
<Note>
31
+
Account health and market radar require a separately authorized [Perps MCP
32
+
connection](/perps-mcp/client-setup) with `tools:execute`. They are not read tools in the Ask Gina
33
+
listed plugin.
34
+
</Note>
35
+
36
+
## Account health
37
+
38
+
`perps.accountHealth` requires an authenticated account. It defaults to canonical Hyperliquid. Pass `providerContext` with `{"providerId":"hip3:xyz"}` for an enabled HIP-3 venue.
39
+
40
+
The response includes at most 64 positions. Set `includeExitEstimates=true` for indicative exit estimates on at most eight positions, not fill guarantees. The tool does not assign a health score or calculate historical performance.
41
+
42
+
## Market radar
43
+
44
+
`perps.marketRadar` accepts `limit` from 1 to 50, defaulting to 10, and an optional `dex`, such as `dex=xyz`. Omit `dex` for canonical Hyperliquid.
45
+
46
+
Eligible markets rank by descending 24-hour traded volume, then open interest, then absolute 24-hour price change, with coin name breaking ties. This measures activity and exposure, not liquidity, depth, or executable size. Excluded-market details are capped at 100.
47
+
48
+
Rank, volume, open-interest, and mark-price deltas compare with a shared sample for that venue, not the caller's previous request. Samples rotate no more often than every five minutes and expire after seven days. Rows without a prior entry are marked `firstSeen`.
49
+
50
+
Radar returns the complete JSON response inline or in an artifact. It does not automatically extract the rows into SQL tables.
51
+
28
52
## Discovery Flow
29
53
30
54
Use this sequence when you are unsure which tool to call:
Copy file name to clipboardExpand all lines: plugins/ask-gina/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ Scope: `tools:read` only. This plugin does not include transaction execution or
61
61
62
62
1. Install **Ask Gina** from the Cursor / Grok Bot plugin marketplace, or load this folder as a local Cursor plugin (`~/.cursor/plugins/local/ask-gina` as a real directory, not an external symlink).
63
63
2. Open the Gina connector and choose **Connect**. Complete Ask Gina OAuth in the browser.
64
-
3. Confirm the connector shows the read tools (30 catalog tools). Skills below should appear as well. In Cursor, the four slash commands and the always-on read-only rule should appear too.
64
+
3. Confirm the connector shows the read tools (31 catalog tools). Skills below should appear as well. In Cursor, the four slash commands and the always-on read-only rule should appear too.
65
65
66
66
Grok Bot loads plugins only from the Cursor marketplace. A local `~/.cursor/plugins/local` install proves the Cursor IDE loader, not Grok Bot.
0 commit comments