@crush-protocol/mcp-client 0.4.21 → 0.4.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/INSTRUCTIONS.md +8 -17
  2. package/package.json +1 -1
package/INSTRUCTIONS.md CHANGED
@@ -52,12 +52,9 @@ After login, credentials are cached locally and reused across supported hosts.
52
52
  | `crush_ch_data_freshness` | Check data freshness for all tables. |
53
53
  | `crush_ch_list_indicators` | List pre-computed indicators with categories. |
54
54
  | `crush_ch_find_data` | Search data catalog by concept (e.g. "funding rate", "BTC price"). |
55
- | `crush_ch_query_market_ohlcv` | Query OHLCV, OI, funding, liquidation data (row cap: 5000). |
56
- | `crush_ch_query_derivatives` | Query derivatives data with interval filter. |
55
+ | `crush_ch_query_candles` | Query OHLCV, OI, funding, liquidation data (42 coins, 3 exchanges, row cap: 5000). |
57
56
  | `crush_ch_query_global_metrics` | Query global market metrics or per-coin derivatives metrics. |
58
57
  | `crush_ch_query_token_market_info` | Query market snapshot data (32 coins, hourly). |
59
- | `crush_ch_query_hyperliquid_ws` | Query real-time 1m candles (229 perps). |
60
- | `crush_ch_query_exchange_data` | Query unified exchange data (futures + spot). |
61
58
  | `crush_ch_query_sentiment` | Query sentiment consensus data. |
62
59
  | `crush_ch_search_twitter` | Search collected tweets by keyword, author, engagement. |
63
60
  | `crush_ch_search_news_feeds` | Search aggregated news with sentiment and token filters. |
@@ -69,18 +66,12 @@ After login, credentials are cached locally and reused across supported hosts.
69
66
 
70
67
  | Tool | Purpose |
71
68
  | -------------------------------------- | ------------------------------------------------------------- |
72
- | `crush_ch_query_liq_coin_summary` | Per-coin liquidation volume/count by time window. |
73
- | `crush_ch_query_liq_maxpain` | Max Pain risk scores and critical liquidation price levels. |
74
- | `crush_ch_query_liq_exchange` | Liquidation distribution across exchanges. |
75
- | `crush_ch_query_liq_history` | Historical liquidation volume time series. |
76
- | `crush_ch_query_liq_heatmap_snapshot` | Liquidation heatmap aggregated by price level. |
77
- | `crush_ch_query_liq_whale_positions` | Whale positions with liquidation prices. |
78
- | `crush_ext_fear_greed_index` | Fear & Greed Index with BTC price history. |
79
- | `crush_ext_bitcoin_active_addresses` | Bitcoin daily active address count. |
80
- | `crush_ext_liq_heatmap` | Real-time liquidation heatmap. |
81
- | `crush_ext_liq_maxpain` | Real-time Max Pain risk scores for all coins. |
82
- | `crush_ext_liq_coin_snapshot` | Real-time per-coin liquidation snapshot. |
83
- | `crush_ext_liq_whale_positions` | Real-time whale positions on-chain. |
69
+ | `crush_liq_query_liquidations` | Liquidation volume by coin, exchange, or time series. Historical (with dates) or real-time. |
70
+ | `crush_liq_query_heatmap` | Liquidation heatmap by price level. Historical snapshots or real-time. |
71
+ | `crush_liq_query_whales` | Whale positions with liquidation prices. Historical or real-time. |
72
+ | `crush_liq_query_risk` | Max Pain risk scores and critical liquidation levels. Historical or real-time. |
73
+ | `crush_ext_fear_greed_index` | Fear & Greed Index with BTC price history. |
74
+ | `crush_ext_bitcoin_active_addresses` | Bitcoin daily active address count. |
84
75
 
85
76
  ### ⚙️ Strategy Management
86
77
 
@@ -136,7 +127,7 @@ After login, credentials are cached locally and reused across supported hosts.
136
127
  ```
137
128
  1. crush_ch_list_tables / crush_ch_find_data → Discover available data
138
129
  2. crush_ch_list_indicators → Browse indicator catalog
139
- 3. crush_ch_query_market_ohlcv → Fetch OHLCV data (≤5000 rows)
130
+ 3. crush_ch_query_candles → Fetch OHLCV data (≤5000 rows)
140
131
  4. crush_ch_query_global_metrics → Check market-wide metrics
141
132
  5. crush_ch_run_query → Custom SQL for complex analysis
142
133
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crush-protocol/mcp-client",
3
- "version": "0.4.21",
3
+ "version": "0.4.22",
4
4
  "description": "Crush MCP server — install with `npx -y @crush-protocol/mcp-client setup --cursor`, NOT npm install",
5
5
  "type": "module",
6
6
  "license": "MIT",