mcp-server-madeonsol 1.5.0 → 1.6.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.
package/README.md CHANGED
@@ -4,6 +4,8 @@ MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. U
4
4
 
5
5
  > Real-time Solana trading intelligence: track 1,000+ KOL wallets with <3s latency, score 6,700+ Pump.fun deployers by reputation, detect multi-KOL coordination signals, monitor any Solana wallet for swaps and transfers, and stream every DEX trade. Free tier: 200 requests/day at [madeonsol.com/developer](https://madeonsol.com/developer) — no credit card required.
6
6
 
7
+ > **New in 1.6.0** *(2026-05-09)* — **Market-cap filtering everywhere.** `madeonsol_kol_feed`, `madeonsol_kol_coordination`, `madeonsol_kol_first_touches`, and `madeonsol_copytrade_signals` all accept `min_mc_usd` / `max_mc_usd` so the assistant can ask "show me sub-$50K KOL trades" without post-filtering. Tool descriptions updated. Deprecated `avg_entry_mc_usd` removed from leaderboards.
8
+
7
9
  ## Quick start (10 seconds)
8
10
 
9
11
  ```bash
package/dist/index.js CHANGED
@@ -123,7 +123,7 @@ function registerTools(server) {
123
123
  params.min_score = min_score;
124
124
  return { content: [{ type: "text", text: await query("/api/x402/kol/coordination", params) }] };
125
125
  });
126
- server.tool("madeonsol_kol_leaderboard", "Get KOL performance rankings by PnL and win rate. Each row includes avg_entry_mc_usd + entry_mc_samples (added 2026-05-06) — average market cap at the moment of each buy in the period, surfacing micro-cap vs mid-cap trader profile. PRO+ can sort by alternative axes (winrate/roi/profit_factor/early_entry).", {
126
+ 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).", {
127
127
  period: z.enum(["today", "7d", "30d", "90d", "180d"]).default("7d").describe("Time period (trade retention is 180d)"),
128
128
  limit: z.number().min(1).max(50).default(20).describe("Number of KOLs to return in ranking"),
129
129
  sort: z.enum(["pnl", "winrate", "profit_factor", "roi", "early_entry"]).optional().describe("PRO+: sort axis (default 'pnl')"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-madeonsol",
3
- "version": "1.5.0",
3
+ "version": "1.6.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",