mcp-server-madeonsol 1.3.0 → 1.3.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/README.md +18 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,6 +68,7 @@ Add to MCP settings with the same command and env vars.
|
|
|
68
68
|
|---|---|
|
|
69
69
|
| `madeonsol_kol_feed` | Real-time KOL trade feed (1,000+ wallets) |
|
|
70
70
|
| `madeonsol_kol_coordination` | Multi-KOL convergence signals (v1.1) — peak-density window, exit detection, 0-100 score |
|
|
71
|
+
| `madeonsol_kol_first_touches` | First-KOL-touch events — backtested scout signal. Filter by scout tier, winrate, token age, mint suffix |
|
|
71
72
|
| `madeonsol_kol_leaderboard` | KOL PnL and win rate rankings (180 days of history; periods: today, 7d, 30d, 90d, 180d) |
|
|
72
73
|
| `madeonsol_kol_pairs` | KOL affinity matrix — which KOLs co-trade the same tokens |
|
|
73
74
|
| `madeonsol_kol_hot_tokens` | KOL momentum tokens — accelerating buy interest |
|
|
@@ -134,6 +135,23 @@ Real-time push alerts when a KOL cluster co-buys the same token. Fires within ~1
|
|
|
134
135
|
| `madeonsol_coordination_alerts_update` | Update fields or toggle `is_active` |
|
|
135
136
|
| `madeonsol_coordination_alerts_delete` | Delete permanently |
|
|
136
137
|
|
|
138
|
+
### KOL Scout Signal — first KOL touches *(new in 1.3)*
|
|
139
|
+
|
|
140
|
+
Every "first KOL buy on a token mint" event. Filterable by **scout tier** (S/A/B/C from `mv_kol_scout_score`), KOL winrate, token age, mint suffix.
|
|
141
|
+
|
|
142
|
+
**Backtest:** S-tier scouts attract ≥3 follow-on KOLs within 4h ~50% of the time vs ~14% baseline (38d / 491k buys / 72,549 events). Public leaderboard at [madeonsol.com/kol/scouts](https://madeonsol.com/kol/scouts).
|
|
143
|
+
|
|
144
|
+
| Tool | Description |
|
|
145
|
+
|---|---|
|
|
146
|
+
| `madeonsol_kol_first_touches` | Recent first-KOL-touch events. Filters: `min_scout_tier`, `min_kol_winrate_7d`, `token_age_max_min`, `mint_suffix`, `preset`, etc. |
|
|
147
|
+
| `madeonsol_first_touch_subscriptions_list` | List your first-touch webhook subscriptions — ULTRA |
|
|
148
|
+
| `madeonsol_first_touch_subscriptions_create` | Create a webhook rule (HMAC-signed). Returns `webhook_secret` once — store it. Up to 10/user — ULTRA |
|
|
149
|
+
| `madeonsol_first_touch_subscriptions_get` | Get one subscription — ULTRA |
|
|
150
|
+
| `madeonsol_first_touch_subscriptions_update` | Update fields or toggle `is_active` — ULTRA |
|
|
151
|
+
| `madeonsol_first_touch_subscriptions_delete` | Delete permanently — ULTRA |
|
|
152
|
+
|
|
153
|
+
> **Don't poll — push.** Median lead time before the second KOL is 12 seconds. WebSocket channel: `kol:first_touches` (PRO+).
|
|
154
|
+
|
|
137
155
|
### Streaming & Webhooks
|
|
138
156
|
|
|
139
157
|
| Tool | Description |
|
package/dist/index.js
CHANGED
|
@@ -650,7 +650,7 @@ async function main() {
|
|
|
650
650
|
res.end(JSON.stringify({
|
|
651
651
|
name: "madeonsol",
|
|
652
652
|
description: "Solana KOL trading intelligence and deployer analytics. Real-time data from 1,000+ KOL wallets, 6,700+ Pump.fun deployers, 47,000+ scored alpha wallets, copy-trade rules, and wallet tracker. Supports MadeOnSol API key (msk_) or x402 micropayments.",
|
|
653
|
-
version: "1.3.
|
|
653
|
+
version: "1.3.1",
|
|
654
654
|
tools: [
|
|
655
655
|
{ name: "madeonsol_kol_feed", description: "Get real-time Solana KOL trades from 1,000+ tracked wallets." },
|
|
656
656
|
{ name: "madeonsol_kol_coordination", description: "Get KOL convergence signals — tokens multiple KOLs are accumulating." },
|
package/package.json
CHANGED