asrai-mcp 1.1.0 → 1.2.1
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.
- package/package.json +1 -1
- package/skill/SKILL.md +22 -1
- package/skill/references/endpoints.md +1 -1
- package/src/indicator_guide.js +1 -0
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -13,11 +13,32 @@ Use Asrai tools when the user asks about crypto prices, market analysis, trading
|
|
|
13
13
|
|
|
14
14
|
- Crypto price / chart / technical analysis → use asrai tools
|
|
15
15
|
- Market sentiment, CBBI, fear/greed → use asrai tools
|
|
16
|
-
- "What should I buy?" /
|
|
16
|
+
- "What should I buy?" / buy opportunities / entry points → use `trade_signals` + `portfolio`
|
|
17
|
+
- Full market overview / morning report → use `market_overview`
|
|
17
18
|
- Elliott Wave, smart money, order blocks → use asrai tools
|
|
18
19
|
- DEX data, low-cap tokens → use asrai tools
|
|
19
20
|
- General knowledge you already know well → answer directly (costs $0.005 per call)
|
|
20
21
|
|
|
22
|
+
## Tool selection guide
|
|
23
|
+
|
|
24
|
+
| User asks... | Primary tool | Supporting tools |
|
|
25
|
+
|---|---|---|
|
|
26
|
+
| "what to buy?" / "buy opportunities" / "entry points" | `trade_signals` | `portfolio`, `sentiment` |
|
|
27
|
+
| "market overview" / "morning report" / "full brief" | `market_overview` | — |
|
|
28
|
+
| "what's trending?" / "hot coins" | `trending` | `gainers_losers` |
|
|
29
|
+
| "BTC analysis" / chart / signals | `technical_analysis` | `smart_money`, `elliott_wave` |
|
|
30
|
+
| "price prediction" / "forecast" | `forecast` | `technical_analysis` |
|
|
31
|
+
| "market sentiment" / "fear greed" / CBBI | `sentiment` | `dominance`, `macro` |
|
|
32
|
+
| "ATH" / "all-time high" coins | `ath_tracker` | `trade_signals` |
|
|
33
|
+
| "volume spikes" / unusual volume | `volume_spikes` | `high_volume_low_cap` |
|
|
34
|
+
| "find coins" / screener criteria | `screener` | `top_bottom` |
|
|
35
|
+
| "cashflow" / capital flow | `cashflow` | `sentiment` |
|
|
36
|
+
| "unlocked coins" / vesting pressure | `late_unlocked_coins` | — |
|
|
37
|
+
| "low cap gems" / DEX / chain tokens | `chain_tokens` | `dexscreener`, `high_volume_low_cap` |
|
|
38
|
+
| "portfolio" / "Abu's picks" | `portfolio` | `coin_info` |
|
|
39
|
+
|
|
40
|
+
**Important:** For buy opportunity questions ALWAYS call `trade_signals` — it combines trending movers, bounces, SAR & MACD entries, RSI, and Galaxy Score in one call.
|
|
41
|
+
|
|
21
42
|
## How to call
|
|
22
43
|
|
|
23
44
|
### If asrai MCP tools are available (Cursor, Cline, Claude Desktop)
|
|
@@ -52,7 +52,7 @@ x402 automatic — $0.005 USDC per endpoint on Base mainnet ($0.01 for `/ai`)
|
|
|
52
52
|
- `GET /api/rsi/`
|
|
53
53
|
- `GET /api/ao/`
|
|
54
54
|
- `GET /api/rsi-heatmap/`
|
|
55
|
-
- `GET /api/indicator/today` — today's triggered ALSAT & indicator signals (TD9, AlphaTrend, etc.)
|
|
55
|
+
- `GET /api/indicator/today` — today's triggered ALSAT & indicator signals (TD9, AlphaTrend, etc.)
|
|
56
56
|
|
|
57
57
|
### Coin Info
|
|
58
58
|
- `GET /api/coinstats/<symbol>` — market cap, volume, supply
|
package/src/indicator_guide.js
CHANGED
|
@@ -411,6 +411,7 @@ const GUIDE = {
|
|
|
411
411
|
cmc_sentiment: "CMC per-coin sentiment — bullish/bearish crowd reading",
|
|
412
412
|
highvolumelowcap: "High volume + small cap = early mover potential, higher risk",
|
|
413
413
|
bounce_dip: "Auto-detected dip-buy or bounce zones — best aligned with ALSAT BUY",
|
|
414
|
+
Indicator_Today: "Today's triggered signals. alsat_signals = ALSAT BUY/SELL fired today. indicator_signals = TD9/AlphaTrend/etc fired today. Access via screener('indicator-today')",
|
|
414
415
|
ath: "Coins near all-time highs — momentum continuation or blow-off top risk",
|
|
415
416
|
late_unlocked_coins: "Far-future vesting tokens — no near-term selling pressure, safer hold",
|
|
416
417
|
cmcai: "CMC AI insights — explains why market is up/down, narratives, institutional flow",
|