mcp-server-madeonsol 1.7.0 โ†’ 1.7.3

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 (3) hide show
  1. package/README.md +12 -5
  2. package/dist/index.js +5 -5
  3. package/package.json +19 -3
package/README.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # mcp-server-madeonsol
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
4
+ [![npm downloads](https://img.shields.io/npm/dm/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
5
+ [![MCP](https://img.shields.io/badge/MCP-compatible-blueviolet?style=flat-square)](https://modelcontextprotocol.io/)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue?style=flat-square)](LICENSE)
7
+
8
+ > ๐Ÿค– **[Use in Claude Desktop](#claude-desktop)** ยท ๐Ÿ–ฑ๏ธ **[Use in Cursor](#cursor)** ยท ๐Ÿ“š **[API docs](https://madeonsol.com/api-docs)** ยท ๐Ÿ’ฐ **[Free API key](https://madeonsol.com/pricing)**
9
+
3
10
  MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. Use from Claude Desktop, Cursor, or any MCP-compatible client.
4
11
 
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.
12
+ > 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/pricing](https://madeonsol.com/pricing) โ€” no credit card required.
6
13
 
7
14
  > **New in 1.7.0** *(2026-05-12)* โ€” Two new tools: **`madeonsol_me`** (account/quota introspection โ€” read tier, remaining requests, and per-feature usage without parsing rate-limit headers) and **`madeonsol_tokens_list`** (PRO+ filtered, sortable token directory โ€” MC band, liquidity floor, primary DEX, authority/safety flags, plus computed 1h volume / MEV-share / MC-change deltas). Token responses now expose **velocity / MEV-share** fields. Token directory defaults to **`min_liq=2000`** to skip phantom-MC dust โ€” pass `min_liq=0` to opt out. `/token/{mint}` now returns **structured 400 errors** (`code` / `reason` / `example` / `docs`) instead of plain strings. Deprecated `avg_entry_mc_usd` field fully removed from KOL/alpha leaderboards.
8
15
 
@@ -12,7 +19,7 @@ MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. U
12
19
  npm install -g mcp-server-madeonsol
13
20
  ```
14
21
 
15
- Add to `claude_desktop_config.json` or Cursor MCP settings (free key: https://madeonsol.com/developer):
22
+ Add to `claude_desktop_config.json` or Cursor MCP settings (free tier at https://madeonsol.com/pricing):
16
23
 
17
24
  ```json
18
25
  { "mcpServers": { "madeonsol": { "command": "mcp-server-madeonsol", "env": { "MADEONSOL_API_KEY": "msk_..." } } } }
@@ -26,10 +33,10 @@ Two options (in priority order):
26
33
 
27
34
  | Method | Env var | Best for |
28
35
  |---|---|---|
29
- | **MadeOnSol API key** (recommended) | `MADEONSOL_API_KEY` | Developers โ€” [get a free key](https://madeonsol.com/developer) |
36
+ | **MadeOnSol API key** (recommended) | `MADEONSOL_API_KEY` | Developers โ€” [get a free key](https://madeonsol.com/pricing) |
30
37
  | x402 micropayments | `SVM_PRIVATE_KEY` | AI agents with Solana wallets |
31
38
 
32
- > **v1.0 breaking change:** RapidAPI auth (`RAPIDAPI_KEY`) has been removed. The MadeOnSol RapidAPI marketplace was retired on 2026-04-19. Get a free `msk_` key at [madeonsol.com/developer](https://madeonsol.com/developer).
39
+ > **v1.0 breaking change:** RapidAPI auth (`RAPIDAPI_KEY`) has been removed. The MadeOnSol RapidAPI marketplace was retired on 2026-04-19. Get a free `msk_` key at [madeonsol.com/pricing](https://madeonsol.com/pricing).
33
40
 
34
41
  ## Install
35
42
 
@@ -180,7 +187,7 @@ Every "first KOL buy on a token mint" event. Filterable by **scout tier** (S/A/B
180
187
  | Pro | $49/mo | 50 | 10,000 |
181
188
  | Ultra | $149/mo | 100 + WS events | 100,000 |
182
189
 
183
- Free tier returns the full REST response shape on every endpoint โ€” real wallets, TX signatures, full precision. Paid tiers unlock webhooks, WebSockets, rule engines, and ULTRA-only data depth. Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
190
+ Free tier returns the full REST response shape on every endpoint โ€” real wallets, TX signatures, full precision. Paid tiers unlock webhooks, WebSockets, rule engines, and ULTRA-only data depth. Get a key at [madeonsol.com/pricing](https://madeonsol.com/pricing).
184
191
 
185
192
  ## Also Available
186
193
 
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/
5
5
  import { z } from "zod";
6
6
  import { createServer } from "node:http";
7
7
  const BASE_URL = process.env.MADEONSOL_API_URL || "https://madeonsol.com";
8
- const MADEONSOL_API_KEY = process.env.MADEONSOL_API_KEY; // Native key from madeonsol.com/developer
8
+ const MADEONSOL_API_KEY = process.env.MADEONSOL_API_KEY; // Native key from madeonsol.com/pricing
9
9
  const PRIVATE_KEY = process.env.SVM_PRIVATE_KEY; // x402 micropayments (for AI agents)
10
10
  const PORT = parseInt(process.env.PORT || "3100", 10);
11
11
  const MODE = process.env.MCP_TRANSPORT || "stdio"; // "stdio" or "http"
@@ -43,7 +43,7 @@ async function initAuth() {
43
43
  }
44
44
  }
45
45
  console.error("\n[madeonsol-mcp] No auth configured โ€” every tool call will fail.\n" +
46
- " โ†’ Get a free MADEONSOL_API_KEY (200 req/day, no card) at https://madeonsol.com/developer\n" +
46
+ " โ†’ Get a free MADEONSOL_API_KEY (200 req/day, no card) at https://madeonsol.com/pricing\n" +
47
47
  " โ†’ Or set SVM_PRIVATE_KEY for x402 micropayments.\n");
48
48
  }
49
49
  async function query(path, params) {
@@ -184,7 +184,7 @@ function registerTools(server) {
184
184
  }
185
185
  return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
186
186
  }
187
- return { content: [{ type: "text", text: "KOL timing requires MADEONSOL_API_KEY (msk_) โ€” get one free at madeonsol.com/developer." }] };
187
+ return { content: [{ type: "text", text: "KOL timing requires MADEONSOL_API_KEY (msk_) โ€” get one free at madeonsol.com/pricing." }] };
188
188
  });
189
189
  server.tool("madeonsol_deployer_trajectory", "Deployer skill curve โ€” streaks, rolling bond rate, improvement trend, and deployment cadence for a Pump.fun deployer.", {
190
190
  wallet: z.string().describe("Deployer wallet address (base58)"),
@@ -198,7 +198,7 @@ function registerTools(server) {
198
198
  }
199
199
  return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
200
200
  }
201
- return { content: [{ type: "text", text: "Deployer trajectory requires MADEONSOL_API_KEY (msk_, Pro/Ultra) โ€” get one at madeonsol.com/developer." }] };
201
+ return { content: [{ type: "text", text: "Deployer trajectory requires MADEONSOL_API_KEY (msk_, Pro/Ultra) โ€” get one at madeonsol.com/pricing." }] };
202
202
  });
203
203
  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.", {
204
204
  period: z.enum(["1h", "6h"]).default("6h").describe("Time period: 1h or 6h"),
@@ -251,7 +251,7 @@ function registerTools(server) {
251
251
  }
252
252
  return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
253
253
  }
254
- return { content: [{ type: "text", text: "KOL PnL requires MADEONSOL_API_KEY (msk_) โ€” get one free at madeonsol.com/developer." }] };
254
+ return { content: [{ type: "text", text: "KOL PnL requires MADEONSOL_API_KEY (msk_) โ€” get one free at madeonsol.com/pricing." }] };
255
255
  });
256
256
  server.tool("madeonsol_kol_trending_tokens", "Tokens ranked by KOL buy volume โ€” pure capital-flow signal. Sub-hour periods (5m/15m/30m) require PRO/ULTRA.", {
257
257
  period: z.enum(["5m", "15m", "30m", "1h", "2h", "4h", "12h"]).default("1h").describe("Time window"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-madeonsol",
3
- "version": "1.7.0",
3
+ "version": "1.7.3",
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",
@@ -16,16 +16,32 @@
16
16
  ],
17
17
  "scripts": {
18
18
  "build": "tsc",
19
- "prepublishOnly": ""
19
+ "preflight": "bash ../../scripts/preflight-publish.sh",
20
+ "prepublishOnly": "npm run preflight && npm run build"
20
21
  },
21
22
  "keywords": [
22
23
  "mcp",
24
+ "model-context-protocol",
25
+ "mcp-server",
23
26
  "solana",
24
27
  "x402",
25
28
  "kol",
29
+ "kol-tracker",
26
30
  "trading",
27
31
  "claude",
28
- "cursor"
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"
29
45
  ],
30
46
  "license": "MIT",
31
47
  "repository": {