mcp-server-madeonsol 0.8.1 → 0.9.0

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/dist/index.js +80 -14
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -80,31 +80,63 @@ async function query(path, params) {
80
80
  }
81
81
  function registerTools(server) {
82
82
  const readOnlyAnnotations = { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true };
83
- server.tool("madeonsol_kol_feed", "Get real-time Solana KOL trades from 1,000+ tracked wallets.", {
83
+ server.tool("madeonsol_kol_feed", "Get real-time Solana KOL trades from 1,000+ tracked wallets. PRO+ adds size/age/strategy/winrate filters.", {
84
84
  limit: z.number().min(1).max(100).default(10).describe("Number of trades to return (1-100)"),
85
85
  action: z.enum(["buy", "sell"]).optional().describe("Filter by trade type: buy or sell"),
86
86
  kol: z.string().optional().describe("Filter by specific KOL wallet address (base58)"),
87
- }, readOnlyAnnotations, async ({ limit, action, kol }) => {
87
+ min_sol: z.number().optional().describe("PRO+: minimum SOL size per trade"),
88
+ token_age_max_min: z.number().optional().describe("PRO+: max token age in minutes at time of trade"),
89
+ exclude_sells: z.boolean().optional().describe("PRO+: drop sell-side trades"),
90
+ min_kol_winrate: z.number().optional().describe("PRO+: minimum 7d winrate of the KOL (0-100)"),
91
+ strategy: z.enum(["sniper", "flipper", "swinger", "holder", "mixed"]).optional().describe("PRO+: filter by auto-tagged strategy"),
92
+ }, readOnlyAnnotations, async ({ limit, action, kol, min_sol, token_age_max_min, exclude_sells, min_kol_winrate, strategy }) => {
88
93
  const params = { limit };
89
94
  if (action)
90
95
  params.action = action;
91
96
  if (kol)
92
97
  params.kol = kol;
98
+ if (min_sol !== undefined)
99
+ params.min_sol = min_sol;
100
+ if (token_age_max_min !== undefined)
101
+ params.token_age_max_min = token_age_max_min;
102
+ if (exclude_sells)
103
+ params.exclude_sells = "true";
104
+ if (min_kol_winrate !== undefined)
105
+ params.min_kol_winrate = min_kol_winrate;
106
+ if (strategy)
107
+ params.strategy = strategy;
93
108
  return { content: [{ type: "text", text: await query("/api/x402/kol/feed", params) }] };
94
109
  });
95
- server.tool("madeonsol_kol_coordination", "Get KOL convergence signals — tokens being accumulated by multiple KOLs simultaneously.", {
110
+ server.tool("madeonsol_kol_coordination", "Get KOL convergence signals — tokens being accumulated by multiple KOLs simultaneously. PRO+ adds cluster quality filters.", {
96
111
  period: z.enum(["1h", "6h", "24h", "7d"]).default("24h").describe("Time period for coordination analysis"),
97
112
  min_kols: z.number().min(2).max(50).default(3).describe("Minimum number of KOLs converging on the same token"),
98
113
  limit: z.number().min(1).max(50).default(20).describe("Number of coordination signals to return"),
99
- }, readOnlyAnnotations, async ({ period, min_kols, limit }) => ({
100
- content: [{ type: "text", text: await query("/api/x402/kol/coordination", { period, min_kols, limit }) }],
101
- }));
102
- server.tool("madeonsol_kol_leaderboard", "Get KOL performance rankings by PnL and win rate.", {
103
- period: z.enum(["today", "7d", "30d"]).default("7d").describe("Time period for leaderboard: today, 7d, or 30d"),
114
+ min_avg_winrate: z.number().optional().describe("PRO+: require cluster avg winrate_7d >= N (0-100)"),
115
+ unique_strategies: z.number().optional().describe("PRO+: require >= N distinct strategies in cluster"),
116
+ }, readOnlyAnnotations, async ({ period, min_kols, limit, min_avg_winrate, unique_strategies }) => {
117
+ const params = { period, min_kols, limit };
118
+ if (min_avg_winrate !== undefined)
119
+ params.min_avg_winrate = min_avg_winrate;
120
+ if (unique_strategies !== undefined)
121
+ params.unique_strategies = unique_strategies;
122
+ return { content: [{ type: "text", text: await query("/api/x402/kol/coordination", params) }] };
123
+ });
124
+ server.tool("madeonsol_kol_leaderboard", "Get KOL performance rankings by PnL and win rate. PRO+ can sort by alternative axes (winrate/roi/profit_factor/early_entry).", {
125
+ period: z.enum(["today", "7d", "30d", "90d", "180d"]).default("7d").describe("Time period (trade retention is 180d)"),
104
126
  limit: z.number().min(1).max(50).default(20).describe("Number of KOLs to return in ranking"),
105
- }, readOnlyAnnotations, async ({ period, limit }) => ({
106
- content: [{ type: "text", text: await query("/api/x402/kol/leaderboard", { period, limit }) }],
107
- }));
127
+ sort: z.enum(["pnl", "winrate", "profit_factor", "roi", "early_entry"]).optional().describe("PRO+: sort axis (default 'pnl')"),
128
+ strategy: z.enum(["sniper", "flipper", "swinger", "holder", "mixed"]).optional().describe("PRO+: filter by strategy tag"),
129
+ min_winrate: z.number().optional().describe("PRO+: minimum winrate cutoff (0-100)"),
130
+ }, readOnlyAnnotations, async ({ period, limit, sort, strategy, min_winrate }) => {
131
+ const params = { period, limit };
132
+ if (sort)
133
+ params.sort = sort;
134
+ if (strategy)
135
+ params.strategy = strategy;
136
+ if (min_winrate !== undefined)
137
+ params.min_winrate = min_winrate;
138
+ return { content: [{ type: "text", text: await query("/api/x402/kol/leaderboard", params) }] };
139
+ });
108
140
  server.tool("madeonsol_deployer_alerts", "Get real-time alerts from Pump.fun deployers with KOL buy enrichment. PRO/ULTRA subscribers can filter by deployer tier (elite/good/moderate/rising/cold).", {
109
141
  limit: z.number().min(1).max(100).default(10).describe("Number of deployer alerts to return (1-100)"),
110
142
  offset: z.number().min(0).default(0).describe("Pagination offset for deployer alerts"),
@@ -150,13 +182,44 @@ function registerTools(server) {
150
182
  }
151
183
  return { content: [{ type: "text", text: "Deployer trajectory requires API key or RapidAPI key auth (Pro/Ultra)." }] };
152
184
  });
153
- server.tool("madeonsol_kol_hot_tokens", "KOL momentum tokens — tokens with accelerating KOL buy interest, early signals before coordination triggers.", {
185
+ server.tool("madeonsol_kol_hot_tokens", "KOL momentum tokens — tokens with accelerating KOL buy interest, early signals before coordination triggers. PRO+ adds buyer-quality filters.", {
154
186
  period: z.enum(["1h", "6h"]).default("6h").describe("Time period: 1h or 6h"),
155
187
  min_kols: z.number().min(1).max(20).default(1).describe("Minimum KOL buyers to include a token"),
156
188
  limit: z.number().min(1).max(50).default(20).describe("Number of hot tokens to return"),
157
- }, readOnlyAnnotations, async ({ period, min_kols, limit }) => ({
158
- content: [{ type: "text", text: await query("/api/x402/kol/tokens/hot", { period, min_kols, limit }) }],
189
+ min_avg_winrate: z.number().optional().describe("PRO+: require avg winrate_7d of buyers >= N (0-100)"),
190
+ unique_strategies: z.number().optional().describe("PRO+: require >= N distinct strategies among buyers"),
191
+ }, readOnlyAnnotations, async ({ period, min_kols, limit, min_avg_winrate, unique_strategies }) => {
192
+ const params = { period, min_kols, limit };
193
+ if (min_avg_winrate !== undefined)
194
+ params.min_avg_winrate = min_avg_winrate;
195
+ if (unique_strategies !== undefined)
196
+ params.unique_strategies = unique_strategies;
197
+ return { content: [{ type: "text", text: await query("/api/x402/kol/tokens/hot", params) }] };
198
+ });
199
+ server.tool("madeonsol_kol_token_entry_order", "Ranked KOL first-buyers for a specific token, ordered by entry timestamp. PRO+ adds percentile_pnl_7d per entry.", {
200
+ mint: z.string().describe("Token mint address (base58)"),
201
+ limit: z.number().min(1).max(200).default(50).describe("Max ranked entries to return"),
202
+ }, readOnlyAnnotations, async ({ mint, limit }) => ({
203
+ content: [{ type: "text", text: await query(`/api/x402/kol/tokens/${encodeURIComponent(mint)}/entry-order`, { limit }) }],
159
204
  }));
205
+ server.tool("madeonsol_kol_compare_wallets", "Side-by-side comparison of 2-5 KOL wallets — strategy, winrates, ROI, percentile. PRO+ adds 30d overlap tokens (bought by 2+ of the wallets).", {
206
+ wallets: z.array(z.string()).min(2).max(5).describe("2-5 wallet addresses. BASIC=2, PRO=4, ULTRA=5."),
207
+ }, readOnlyAnnotations, async ({ wallets }) => ({
208
+ content: [{ type: "text", text: await query("/api/x402/kol/compare", { wallets: wallets.join(",") }) }],
209
+ }));
210
+ server.tool("madeonsol_kol_alerts_recent", "Live KOL alert feed — consensus clusters, fresh-token KOL buys, and heating-up wallets in one unified stream.", {
211
+ window: z.enum(["5m", "15m", "1h", "6h", "24h"]).default("15m").describe("Lookback window"),
212
+ types: z.array(z.enum(["consensus_cluster", "fresh_token_kol_buy", "heating_up"])).optional().describe("Filter to specific alert types"),
213
+ min_severity: z.enum(["low", "medium", "high"]).optional().describe("Minimum severity to include"),
214
+ limit: z.number().min(1).max(200).default(50).describe("Max alerts to return"),
215
+ }, readOnlyAnnotations, async ({ window, types, min_severity, limit }) => {
216
+ const params = { window, limit };
217
+ if (types && types.length > 0)
218
+ params.types = types.join(",");
219
+ if (min_severity)
220
+ params.min_severity = min_severity;
221
+ return { content: [{ type: "text", text: await query("/api/x402/kol/alerts/recent", params) }] };
222
+ });
160
223
  server.tool("madeonsol_kol_pnl", "Deep per-wallet PnL breakdown — realized PnL, win rate, profit factor, max drawdown, daily equity curve, closed/open positions. BASIC: summary only. PRO: + curve + closed. ULTRA: + open positions.", {
161
224
  wallet: z.string().describe("KOL wallet address (base58)"),
162
225
  period: z.enum(["7d", "30d", "90d", "180d"]).default("30d").describe("Time period for PnL calculation"),
@@ -368,6 +431,9 @@ async function main() {
368
431
  { name: "madeonsol_kol_hot_tokens", description: "KOL momentum tokens — accelerating buy interest." },
369
432
  { name: "madeonsol_kol_pnl", description: "Deep per-wallet PnL: equity curve, risk metrics, positions." },
370
433
  { name: "madeonsol_kol_trending_tokens", description: "Tokens ranked by KOL buy volume (5m–12h windows)." },
434
+ { name: "madeonsol_kol_token_entry_order", description: "Ranked KOL first-buyers for a specific token." },
435
+ { name: "madeonsol_kol_compare_wallets", description: "Side-by-side comparison of 2-5 KOL wallets (overlap in PRO+)." },
436
+ { name: "madeonsol_kol_alerts_recent", description: "Unified live KOL alert feed: clusters, fresh buys, heating-up." },
371
437
  { name: "madeonsol_discovery", description: "List all available endpoints with prices. Free." },
372
438
  { name: "madeonsol_create_webhook", description: "Register a webhook for real-time push notifications. Pro/Ultra." },
373
439
  { name: "madeonsol_list_webhooks", description: "List your registered webhooks. Pro/Ultra." },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-madeonsol",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "mcpName": "io.github.lambopoewert/madeonsol",
5
5
  "description": "MCP server for MadeOnSol Solana KOL intelligence API — use from Claude, Cursor, or any MCP client",
6
6
  "type": "module",