mcp-server-madeonsol 1.7.4 → 1.8.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 CHANGED
@@ -3,10 +3,11 @@
3
3
  [![npm version](https://img.shields.io/npm/v/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
5
5
  [![Smithery](https://img.shields.io/badge/Smithery-listed-blueviolet?style=flat-square)](https://smithery.ai/servers/madeonsol/solana-kol-intelligence)
6
+ [![Glama](https://glama.ai/mcp/servers/LamboPoewert/mcp-server-madeonsol/badges/score.svg)](https://glama.ai/mcp/servers/LamboPoewert/mcp-server-madeonsol)
6
7
  [![MCP](https://img.shields.io/badge/MCP-compatible-blueviolet?style=flat-square)](https://modelcontextprotocol.io/)
7
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue?style=flat-square)](LICENSE)
8
9
 
9
- > ⚡ **[Install via Smithery](#install-via-smithery-one-line)** · 🤖 **[Use in Claude Desktop](#claude-desktop)** · 🖱️ **[Use in Cursor](#cursor)** · 📚 **[API docs](https://madeonsol.com/api-docs)** · 💰 **[Free API key](https://madeonsol.com/pricing)**
10
+ > ⚡ **[Install via Smithery](#install-via-smithery-one-line)** · 🤖 **[Use in Claude Desktop](#claude-desktop)** · 🖱️ **[Use in Cursor](#cursor)** · 📚 **[API docs](https://madeonsol.com/api-docs)** · 💰 **[Free API key](https://madeonsol.com/pricing)** · 🔎 **[On Glama](https://glama.ai/mcp/servers/LamboPoewert/mcp-server-madeonsol)**
10
11
 
11
12
  MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. Use from Claude Desktop, Cursor, or any MCP-compatible client.
12
13
 
@@ -119,6 +120,17 @@ Add to MCP settings with the same command and env vars.
119
120
  | `madeonsol_wallet_tracker_trades` | Historical swap/transfer events for watched wallets (120-day retention) |
120
121
  | `madeonsol_wallet_tracker_summary` | Per-wallet stats: swap counts, SOL bought/sold, last event |
121
122
 
123
+ ### Universal Wallet *(new in 1.8 — any wallet, not just curated KOLs, PRO+)*
124
+
125
+ | Tool | Description |
126
+ |---|---|
127
+ | `madeonsol_wallet_stats` | Aggregate 90d stats + cross-product flags (is_kol, is_alpha_tracked + bot_confidence + win_rate + net_pnl, is_deployer + tokens_deployed) — quick sizing-up of an unknown wallet |
128
+ | `madeonsol_wallet_pnl` | Full FIFO cost-basis PnL: realized + unrealized SOL, profit factor, max drawdown, avg + median hold minutes, daily UTC PnL curve, closed + open positions hydrated with live mc-tracker prices |
129
+ | `madeonsol_wallet_positions` | Open positions only — lighter slice of /pnl. Shares the same cache. |
130
+ | `madeonsol_wallet_trades` | Cursor-paginated raw trades with action / token / since-until filters |
131
+
132
+ Cached server-side with dynamic TTL (5min / 1h / 24h based on last activity). Cost basis observable only inside the 90-day window.
133
+
122
134
  ### Alpha Wallet Intelligence
123
135
 
124
136
  Scored from 47,000+ early-buyer records (wallets seen in the first 20 buyers of Pump.fun tokens).
package/dist/index.js CHANGED
@@ -334,7 +334,61 @@ function registerTools(server) {
334
334
  const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
335
335
  return { content: [{ type: "text", text }] };
336
336
  });
337
+ // ── Universal wallet endpoints (PRO+, any wallet — not just curated KOLs) ──
338
+ server.tool("madeonsol_wallet_stats", "Aggregate stats for any Solana wallet over the last 90 days plus cross-product flags (is_kol, is_alpha_tracked with bot_confidence + win_rate + net_pnl, is_deployer with tokens_deployed + bonding_rate). Use this before drilling into PnL to size up an unknown wallet quickly. PRO+.", {
339
+ address: z.string().describe("Solana wallet address (base58)"),
340
+ }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ address }) => {
341
+ const res = await fetch(`${BASE_URL}/api/v1/wallet/${encodeURIComponent(address)}`, {
342
+ headers: { "Content-Type": "application/json", ...apiKeyHeaders() },
343
+ });
344
+ const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
345
+ return { content: [{ type: "text", text }] };
346
+ });
347
+ server.tool("madeonsol_wallet_pnl", "Full FIFO cost-basis PnL for any wallet: realized + unrealized SOL, profit factor, max drawdown, avg + median hold minutes, daily UTC PnL curve, closed positions sorted by pnl desc (with ROI %, hold time, win/loss), and open positions hydrated with live current prices from the market-cap tracker. Cached with dynamic TTL (5min active / 1h recent / 24h dormant). Cache hits don't count against your daily quota. Cost basis only observable inside the 90-day data window — overflow sells are silently discarded rather than fabricated. PRO+.", {
348
+ address: z.string().describe("Solana wallet address (base58)"),
349
+ }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ address }) => {
350
+ const res = await fetch(`${BASE_URL}/api/v1/wallet/${encodeURIComponent(address)}/pnl`, {
351
+ headers: { "Content-Type": "application/json", ...apiKeyHeaders() },
352
+ });
353
+ const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
354
+ return { content: [{ type: "text", text }] };
355
+ });
356
+ server.tool("madeonsol_wallet_positions", "Open positions only for any wallet — lighter slice of madeonsol_wallet_pnl for use cases that don't need the full PnL summary or curve. Each position: token_mint, token_amount, cost_basis_sol, avg_entry_price_sol, current_price_sol (live from mc-tracker; null if delisted), current_value_sol, unrealized_sol, unrealized_pct, first_buy_at. Shares the /pnl cache. PRO+.", {
357
+ address: z.string().describe("Solana wallet address (base58)"),
358
+ }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ address }) => {
359
+ const res = await fetch(`${BASE_URL}/api/v1/wallet/${encodeURIComponent(address)}/positions`, {
360
+ headers: { "Content-Type": "application/json", ...apiKeyHeaders() },
361
+ });
362
+ const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
363
+ return { content: [{ type: "text", text }] };
364
+ });
365
+ server.tool("madeonsol_wallet_trades", "Cursor-paginated raw trades for any wallet. Filter by action (buy/sell), specific token_mint, time window via since/until (Unix seconds; default last 90 days). Cursor encodes (block_time, id) for stable DESC pagination — pass next_cursor from the previous response to fetch older trades. Limit 1-500 (default 100). PRO+.", {
366
+ address: z.string().describe("Solana wallet address (base58)"),
367
+ limit: z.number().min(1).max(500).default(100).describe("Trades per page (1-500)"),
368
+ cursor: z.string().optional().describe("Cursor from previous response's next_cursor field"),
369
+ action: z.enum(["buy", "sell"]).optional().describe("Filter to buys or sells only"),
370
+ token_mint: z.string().optional().describe("Filter to a single token mint"),
371
+ since: z.number().optional().describe("Unix epoch seconds — default now-90d"),
372
+ until: z.number().optional().describe("Unix epoch seconds — default now"),
373
+ }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ address, limit, cursor, action, token_mint, since, until }) => {
374
+ const url = new URL(`${BASE_URL}/api/v1/wallet/${encodeURIComponent(address)}/trades`);
375
+ url.searchParams.set("limit", String(limit));
376
+ if (cursor)
377
+ url.searchParams.set("cursor", cursor);
378
+ if (action)
379
+ url.searchParams.set("action", action);
380
+ if (token_mint)
381
+ url.searchParams.set("token_mint", token_mint);
382
+ if (since !== undefined)
383
+ url.searchParams.set("since", String(since));
384
+ if (until !== undefined)
385
+ url.searchParams.set("until", String(until));
386
+ const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
387
+ const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
388
+ return { content: [{ type: "text", text }] };
389
+ });
337
390
  console.error("[madeonsol-mcp] Wallet tracker tools enabled");
391
+ console.error("[madeonsol-mcp] Universal wallet tools enabled (stats / pnl / positions / trades)");
338
392
  }
339
393
  else {
340
394
  console.error("[madeonsol-mcp] Wallet tracker tools disabled (requires MADEONSOL_API_KEY)");
@@ -681,7 +735,7 @@ async function main() {
681
735
  res.end(JSON.stringify({
682
736
  name: "madeonsol",
683
737
  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.",
684
- version: "1.7.0",
738
+ version: "1.8.0",
685
739
  tools: [
686
740
  { name: "madeonsol_kol_feed", description: "Get real-time Solana KOL trades from 1,000+ tracked wallets." },
687
741
  { name: "madeonsol_kol_coordination", description: "Get KOL convergence signals — tokens multiple KOLs are accumulating." },
@@ -709,6 +763,10 @@ async function main() {
709
763
  { name: "madeonsol_wallet_tracker_remove", description: "Remove a wallet from your watchlist." },
710
764
  { name: "madeonsol_wallet_tracker_trades", description: "Historical swap/transfer events for watched wallets." },
711
765
  { name: "madeonsol_wallet_tracker_summary", description: "Per-wallet stats: swap counts, SOL bought/sold." },
766
+ { name: "madeonsol_wallet_stats", description: "Aggregate stats + cross-product flags (is_kol/alpha/deployer) for any Solana wallet. PRO+." },
767
+ { name: "madeonsol_wallet_pnl", description: "Full FIFO cost-basis PnL for any wallet: realized + unrealized, profit factor, drawdown, daily curve, closed + open positions. PRO+." },
768
+ { name: "madeonsol_wallet_positions", description: "Open positions only for any wallet — lighter slice of /pnl. Live unrealized SOL from mc-tracker. PRO+." },
769
+ { name: "madeonsol_wallet_trades", description: "Cursor-paginated raw trades for any wallet. Filter by action / token_mint / time window. PRO+." },
712
770
  { name: "madeonsol_alpha_leaderboard", description: "Top profitable early-buyer wallets — 47,000+ scored. BASIC=25, PRO=100, ULTRA=500." },
713
771
  { name: "madeonsol_alpha_wallet", description: "Full alpha profile + bot signals for one wallet. ULTRA only." },
714
772
  { name: "madeonsol_alpha_linked", description: "Behaviorally linked wallets (co-bought 3+ tokens within 2s). ULTRA only." },
@@ -749,7 +807,7 @@ async function main() {
749
807
  transport = new StreamableHTTPServerTransport({
750
808
  sessionIdGenerator: undefined,
751
809
  });
752
- const server = new McpServer({ name: "madeonsol", version: "1.7.0" });
810
+ const server = new McpServer({ name: "madeonsol", version: "1.8.0" });
753
811
  registerTools(server);
754
812
  await server.connect(transport);
755
813
  }
@@ -787,7 +845,7 @@ async function main() {
787
845
  }
788
846
  else {
789
847
  // Stdio transport for local use (Claude Desktop, Cursor, Claude Code)
790
- const server = new McpServer({ name: "madeonsol", version: "1.7.0" });
848
+ const server = new McpServer({ name: "madeonsol", version: "1.8.0" });
791
849
  registerTools(server);
792
850
  const transport = new StdioServerTransport();
793
851
  await server.connect(transport);
package/glama.json CHANGED
@@ -1,49 +1,85 @@
1
1
  {
2
2
  "name": "mcp-server-madeonsol",
3
- "display_name": "MadeOnSol",
4
- "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, server-side copy-trade rules, and wallet tracker. Supports free MadeOnSol API key (msk_) or x402 micropayments.",
5
- "version": "1.0.0",
3
+ "display_name": "MadeOnSol — Solana memecoin intelligence",
4
+ "description": "Real-time Solana memecoin trading intelligence track 1,000+ KOL wallets with <3s latency, score 6,700+ Pump.fun deployers, surface multi-KOL coordination signals, run server-side copy-trade rules, and stream every DEX trade across 9+ programs. Backtested first-touch scout signal (S-tier scouts attract ≥3 follow-on KOLs ~50% of the time vs 14% baseline). Free tier 200 requests per day; auth via msk_ API key or x402 micropayments.",
5
+ "version": "1.7.4",
6
6
  "homepage": "https://madeonsol.com/solana-api",
7
7
  "repository": "https://github.com/LamboPoewert/mcp-server-madeonsol",
8
8
  "license": "MIT",
9
9
  "categories": ["blockchain", "finance", "web3"],
10
- "tags": ["solana", "kol", "trading", "x402", "micropayments", "defi", "api", "deployer", "pump-fun", "copy-trade"],
10
+ "tags": [
11
+ "mcp",
12
+ "claude",
13
+ "cursor",
14
+ "solana",
15
+ "memecoin",
16
+ "kol",
17
+ "kol-tracker",
18
+ "alpha-bot",
19
+ "first-touch",
20
+ "coordination",
21
+ "deployer-hunter",
22
+ "pump-fun",
23
+ "copy-trade",
24
+ "smart-money",
25
+ "x402",
26
+ "micropayments",
27
+ "defi",
28
+ "trading",
29
+ "api"
30
+ ],
11
31
  "tools": [
12
- { "name": "madeonsol_kol_feed", "description": "Get real-time Solana KOL trades from 1,000+ tracked wallets." },
13
- { "name": "madeonsol_kol_coordination", "description": "Get KOL convergence signals tokens multiple KOLs are accumulating." },
14
- { "name": "madeonsol_kol_leaderboard", "description": "Get KOL performance rankings by PnL and win rate." },
15
- { "name": "madeonsol_deployer_alerts", "description": "Get Pump.fun deployer alerts with KOL enrichment." },
32
+ { "name": "madeonsol_kol_feed", "description": "Real-time Solana KOL trade feed from 1,000+ tracked wallets." },
33
+ { "name": "madeonsol_kol_coordination", "description": "Multi-KOL convergence with 0-100 score, peak-density window, exits." },
34
+ { "name": "madeonsol_kol_first_touches", "description": "First-KOL-touch events backtested scout signal, filter by tier S/A/B/C." },
35
+ { "name": "madeonsol_kol_leaderboard", "description": "KOL PnL + win-rate rankings over today, 7d, 30d, 90d, 180d." },
16
36
  { "name": "madeonsol_kol_pairs", "description": "KOL affinity matrix — which KOLs co-trade the same tokens." },
17
- { "name": "madeonsol_kol_timing", "description": "KOL entry/exit timing profile. Pro/Ultra." },
18
- { "name": "madeonsol_deployer_trajectory", "description": "Deployer skill curve — streaks, trend. Pro/Ultra." },
19
37
  { "name": "madeonsol_kol_hot_tokens", "description": "KOL momentum tokens — accelerating buy interest." },
20
- { "name": "madeonsol_kol_pnl", "description": "Deep per-wallet PnL: equity curve, risk metrics, positions." },
21
- { "name": "madeonsol_kol_trending_tokens", "description": "Tokens ranked by KOL buy volume (5m–12h windows)." },
38
+ { "name": "madeonsol_kol_trending_tokens", "description": "Tokens ranked by KOL buy volume across 5m–12h windows." },
22
39
  { "name": "madeonsol_kol_token_entry_order", "description": "Ranked KOL first-buyers for a specific token." },
23
- { "name": "madeonsol_kol_compare_wallets", "description": "Side-by-side comparison of 2-5 KOL wallets (overlap in PRO+)." },
24
- { "name": "madeonsol_kol_alerts_recent", "description": "Unified live KOL alert feed: clusters, fresh buys, heating-up." },
25
- { "name": "madeonsol_discovery", "description": "List all available endpoints with prices. Free, no auth required." },
26
- { "name": "madeonsol_create_webhook", "description": "Register a webhook for real-time push notifications. Pro/Ultra." },
27
- { "name": "madeonsol_list_webhooks", "description": "List your registered webhooks. Pro/Ultra." },
28
- { "name": "madeonsol_delete_webhook", "description": "Delete a webhook by ID. Pro/Ultra." },
29
- { "name": "madeonsol_test_webhook", "description": "Send a test payload to verify a webhook. Pro/Ultra." },
30
- { "name": "madeonsol_stream_token", "description": "Get a 24h WebSocket streaming token. Pro/Ultra." },
31
- { "name": "madeonsol_wallet_tracker_watchlist", "description": "List your tracked wallets and remaining capacity." },
32
- { "name": "madeonsol_wallet_tracker_add", "description": "Add a wallet to your watchlist." },
40
+ { "name": "madeonsol_kol_compare_wallets", "description": "Side-by-side comparison of 2-5 KOL wallets with overlap analysis." },
41
+ { "name": "madeonsol_kol_alerts_recent", "description": "Unified live KOL alert feed: clusters, fresh buys, heating-up wallets." },
42
+ { "name": "madeonsol_kol_pnl", "description": "Deep per-wallet PnL: equity curve, risk metrics, closed + open positions." },
43
+ { "name": "madeonsol_kol_timing", "description": "KOL entry/exit timing profile average hold, win rate by hour." },
44
+ { "name": "madeonsol_deployer_alerts", "description": "Pump.fun deployer alerts with KOL enrichment, filter by tier." },
45
+ { "name": "madeonsol_deployer_trajectory", "description": "Deployer skill curve streaks, rolling bond rate, trend." },
46
+ { "name": "madeonsol_alpha_leaderboard", "description": "Top profitable early-buyer wallets — 47,000+ scored, up to 500 on ULTRA." },
47
+ { "name": "madeonsol_alpha_wallet", "description": "Full alpha profile + bot-signal flags for one wallet." },
48
+ { "name": "madeonsol_alpha_linked", "description": "Behaviorally linked wallets (co-bought 3+ tokens within 2s)." },
49
+ { "name": "madeonsol_tokens_list", "description": "Filtered token directory MC band, liquidity, MEV-share, velocity, primary DEX, authority flags." },
50
+ { "name": "madeonsol_token_get", "description": "Single token detail — MC, holders, velocity, MEV-share, history age." },
51
+ { "name": "madeonsol_token_batch", "description": "Bulk token detail fetch — up to 50 mints per call." },
52
+ { "name": "madeonsol_token_cap_table", "description": "First non-deployer early buyers for a token, enriched with PnL/KOL/bot flags." },
53
+ { "name": "madeonsol_token_buyer_quality", "description": "0-100 buyer-quality score for a token's first-buyer cohort." },
54
+ { "name": "madeonsol_tokens_batch_buyer_quality", "description": "Bulk buyer-quality scoring — up to 50 mints per call." },
55
+ { "name": "madeonsol_wallet_tracker_watchlist", "description": "List tracked wallets and remaining capacity (Free 10 / Pro 50 / Ultra 100)." },
56
+ { "name": "madeonsol_wallet_tracker_add", "description": "Add a wallet to your watchlist with optional label." },
33
57
  { "name": "madeonsol_wallet_tracker_remove", "description": "Remove a wallet from your watchlist." },
34
- { "name": "madeonsol_wallet_tracker_trades", "description": "Historical swap/transfer events for watched wallets." },
35
- { "name": "madeonsol_wallet_tracker_summary", "description": "Per-wallet stats: swap counts, SOL bought/sold." },
36
- { "name": "madeonsol_alpha_leaderboard", "description": "Top profitable early-buyer wallets — 47,000+ scored. BASIC=25, PRO=100, ULTRA=500." },
37
- { "name": "madeonsol_alpha_wallet", "description": "Full alpha profile + bot signals for one wallet. ULTRA only." },
38
- { "name": "madeonsol_alpha_linked", "description": "Behaviorally linked wallets (co-bought 3+ tokens within 2s). ULTRA only." },
39
- { "name": "madeonsol_token_cap_table", "description": "First non-deployer early buyers for a token, enriched. PRO=10, ULTRA=20." },
40
- { "name": "madeonsol_token_buyer_quality", "description": "0–100 buyer quality score for a token's first-buyer cohort." },
41
- { "name": "madeonsol_copytrade_list", "description": "List your copy-trade rules. PRO/ULTRA." },
42
- { "name": "madeonsol_copytrade_create", "description": "Create a copy-trade rule with webhook + WS delivery. PRO/ULTRA." },
43
- { "name": "madeonsol_copytrade_get", "description": "Get one copy-trade rule. PRO/ULTRA." },
44
- { "name": "madeonsol_copytrade_update", "description": "Update a copy-trade rule. PRO/ULTRA." },
45
- { "name": "madeonsol_copytrade_delete", "description": "Delete a copy-trade rule. PRO/ULTRA." },
46
- { "name": "madeonsol_copytrade_signals", "description": "Recent fired copy-trade signals (up to 7 days). PRO/ULTRA." }
58
+ { "name": "madeonsol_wallet_tracker_trades", "description": "Historical swap/transfer events for watched wallets (120-day retention)." },
59
+ { "name": "madeonsol_wallet_tracker_summary", "description": "Per-wallet stats: swap counts, SOL bought/sold, last event." },
60
+ { "name": "madeonsol_copytrade_list", "description": "List your copy-trade rules." },
61
+ { "name": "madeonsol_copytrade_create", "description": "Create a copy-trade rule with webhook + WS delivery (HMAC-signed)." },
62
+ { "name": "madeonsol_copytrade_get", "description": "Get one copy-trade rule." },
63
+ { "name": "madeonsol_copytrade_update", "description": "Update or toggle a copy-trade rule." },
64
+ { "name": "madeonsol_copytrade_delete", "description": "Delete a copy-trade rule." },
65
+ { "name": "madeonsol_copytrade_signals", "description": "Recent fired copy-trade signals (up to 7 days, 1-500)." },
66
+ { "name": "madeonsol_coordination_alerts_list", "description": "List your KOL coordination alert rules (PRO=5, ULTRA=20)." },
67
+ { "name": "madeonsol_coordination_alerts_create", "description": "Create a coordination alert rule — pg_notify push, sub-second delivery." },
68
+ { "name": "madeonsol_coordination_alerts_get", "description": "Get one coordination alert rule." },
69
+ { "name": "madeonsol_coordination_alerts_update", "description": "Update or toggle a coordination alert rule." },
70
+ { "name": "madeonsol_coordination_alerts_delete", "description": "Delete a coordination alert rule." },
71
+ { "name": "madeonsol_first_touch_subscriptions_list", "description": "List your first-touch webhook subscriptions (ULTRA, up to 10)." },
72
+ { "name": "madeonsol_first_touch_subscriptions_create", "description": "Create a first-touch webhook subscription — push on every S-tier scout buy." },
73
+ { "name": "madeonsol_first_touch_subscriptions_get", "description": "Get one first-touch subscription." },
74
+ { "name": "madeonsol_first_touch_subscriptions_update", "description": "Update or toggle a first-touch subscription." },
75
+ { "name": "madeonsol_first_touch_subscriptions_delete", "description": "Delete a first-touch subscription." },
76
+ { "name": "madeonsol_create_webhook", "description": "Register a webhook for real-time push notifications (PRO/ULTRA)." },
77
+ { "name": "madeonsol_list_webhooks", "description": "List your registered webhooks (PRO/ULTRA)." },
78
+ { "name": "madeonsol_delete_webhook", "description": "Delete a webhook by ID (PRO/ULTRA)." },
79
+ { "name": "madeonsol_test_webhook", "description": "Send a test payload to verify a webhook (PRO/ULTRA)." },
80
+ { "name": "madeonsol_stream_token", "description": "Issue a 24h WebSocket streaming token (Pro/Ultra). Includes dex_ws_url on ULTRA." },
81
+ { "name": "madeonsol_me", "description": "Account/quota introspection — tier, remaining requests, per-feature usage." },
82
+ { "name": "madeonsol_discovery", "description": "List all available endpoints with x402 prices (free, no auth)." }
47
83
  ],
48
84
  "transports": ["stdio", "http"],
49
85
  "runtime": "node"
package/package.json CHANGED
@@ -1,61 +1,66 @@
1
- {
2
- "name": "mcp-server-madeonsol",
3
- "version": "1.7.4",
4
- "mcpName": "io.github.lambopoewert/madeonsol",
5
- "description": "MCP server for MadeOnSol Solana KOL intelligence API — use from Claude, Cursor, or any MCP client",
6
- "type": "module",
7
- "bin": {
8
- "mcp-server-madeonsol": "dist/index.js"
9
- },
10
- "main": "dist/index.js",
11
- "files": [
12
- "dist",
13
- "README.md",
14
- "LICENSE",
15
- "glama.json"
16
- ],
17
- "scripts": {
18
- "build": "tsc",
19
- "preflight": "bash ../../scripts/preflight-publish.sh",
20
- "prepublishOnly": "npm run preflight && npm run build"
21
- },
22
- "keywords": [
23
- "mcp",
24
- "model-context-protocol",
25
- "mcp-server",
26
- "solana",
27
- "x402",
28
- "kol",
29
- "kol-tracker",
30
- "trading",
31
- "claude",
32
- "claude-desktop",
33
- "cursor",
34
- "windsurf",
35
- "ai-agent",
36
- "memecoin",
37
- "memecoin-tracker",
38
- "pumpfun",
39
- "deployer-hunter",
40
- "alpha",
41
- "alpha-bot",
42
- "smart-money",
43
- "copy-trading",
44
- "madeonsol"
45
- ],
46
- "license": "MIT",
47
- "repository": {
48
- "type": "git",
49
- "url": "https://github.com/LamboPoewert/mcp-server-madeonsol"
50
- },
51
- "dependencies": {
52
- "@modelcontextprotocol/sdk": "^1.12.1"
53
- },
54
- "peerDependencies": {
55
- "@x402/fetch": ">=0.1.0",
56
- "@x402/core": ">=0.1.0",
57
- "@x402/svm": ">=0.1.0",
58
- "@solana/kit": ">=2.0.0",
59
- "@scure/base": ">=1.0.0"
60
- }
61
- }
1
+ {
2
+ "name": "mcp-server-madeonsol",
3
+ "version": "1.8.1",
4
+ "mcpName": "io.github.lambopoewert/madeonsol",
5
+ "description": "MCP server for MadeOnSol Solana KOL intelligence API — use from Claude, Cursor, or any MCP client",
6
+ "type": "module",
7
+ "bin": {
8
+ "mcp-server-madeonsol": "dist/index.js"
9
+ },
10
+ "main": "dist/index.js",
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE",
15
+ "glama.json"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "preflight": "bash ../../scripts/preflight-publish.sh",
20
+ "prepublishOnly": "npm run preflight && npm run build"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "model-context-protocol",
25
+ "mcp-server",
26
+ "solana",
27
+ "x402",
28
+ "kol",
29
+ "kol-tracker",
30
+ "trading",
31
+ "claude",
32
+ "claude-desktop",
33
+ "cursor",
34
+ "windsurf",
35
+ "ai-agent",
36
+ "memecoin",
37
+ "memecoin-tracker",
38
+ "pumpfun",
39
+ "deployer-hunter",
40
+ "alpha",
41
+ "alpha-bot",
42
+ "smart-money",
43
+ "copy-trading",
44
+ "madeonsol"
45
+ ],
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/LamboPoewert/mcp-server-madeonsol"
50
+ },
51
+ "dependencies": {
52
+ "@modelcontextprotocol/sdk": "^1.12.1",
53
+ "zod": "^4.3.6"
54
+ },
55
+ "peerDependencies": {
56
+ "@x402/fetch": ">=0.1.0",
57
+ "@x402/core": ">=0.1.0",
58
+ "@x402/svm": ">=0.1.0",
59
+ "@solana/kit": ">=2.0.0",
60
+ "@scure/base": ">=1.0.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "^20",
64
+ "typescript": "^5"
65
+ }
66
+ }