mcp-server-madeonsol 1.10.0 → 1.10.2
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 +12 -6
- package/dist/index.js +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,8 +11,14 @@
|
|
|
11
11
|
|
|
12
12
|
MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. Use from Claude Desktop, Cursor, or any MCP-compatible client.
|
|
13
13
|
|
|
14
|
-
> Real-time Solana trading intelligence: track 1,
|
|
15
|
-
|
|
14
|
+
> Real-time Solana trading intelligence: track 1,069 KOL wallets with <3s latency, score 23,000+ Pump.fun deployers, surface deshred deploy signals **~500ms before on-chain confirmation**, detect multi-KOL coordination, and stream every DEX trade across 9+ programs. Free tier: 200 requests/day at [madeonsol.com/pricing](https://madeonsol.com/pricing) — no credit card required.
|
|
15
|
+
|
|
16
|
+
> **New in 1.10** — **Deshred Sniper Alerts.** `madeonsol_sniper_recent` surfaces pump.fun deploys from shred-level data ~500ms before on-chain confirmation. PRO: elite/good deployers. ULTRA: all tiers + custom watchlist. Use `sniper:deploys` WebSocket or `sniper:deploy` webhook for live push.
|
|
17
|
+
>
|
|
18
|
+
> **New in 1.9** — **Price alerts, scout leaderboard, coordination history.** `madeonsol_price_alerts_*` CRUD (PRO=5, ULTRA=25). `madeonsol_scout_leaderboard` ranks top scouts by first-touch follow-on rate. `madeonsol_coordination_history` and `madeonsol_peak_history` expose the historical record. `madeonsol_wallet_stats` now returns `derived`: win_rate, roi, verdict, biggest_miss.
|
|
19
|
+
>
|
|
20
|
+
> **New in 1.8** — **Universal Wallet API.** `madeonsol_wallet_stats`, `madeonsol_wallet_pnl`, `madeonsol_wallet_positions`, `madeonsol_wallet_trades` — FIFO cost-basis PnL and cursor-paginated raw trades for any Solana wallet. PRO+. Cache hits don't count against quota.
|
|
21
|
+
>
|
|
16
22
|
> **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.
|
|
17
23
|
|
|
18
24
|
## Install via Smithery (one line)
|
|
@@ -142,7 +148,7 @@ Cached server-side with dynamic TTL (5min / 1h / 24h based on last activity). Co
|
|
|
142
148
|
|
|
143
149
|
### Alpha Wallet Intelligence
|
|
144
150
|
|
|
145
|
-
Scored from
|
|
151
|
+
Scored from 1M+ early-buyer records (wallets seen in the first 20 buyers of Pump.fun tokens).
|
|
146
152
|
|
|
147
153
|
| Tool | Tier | Description |
|
|
148
154
|
|---|---|---|
|
|
@@ -246,9 +252,9 @@ CRUD for token dip/recovery price alerts. Fires when a token's market cap crosse
|
|
|
246
252
|
|
|
247
253
|
| Tier | Price | Wallets tracked | Requests/day |
|
|
248
254
|
|------|-------|-----------------|--------------|
|
|
249
|
-
|
|
|
250
|
-
|
|
|
251
|
-
|
|
|
255
|
+
| BASIC (free) | $0 | 10 | 200 |
|
|
256
|
+
| PRO | $49/mo ($490/yr) | 50 | 10,000 |
|
|
257
|
+
| ULTRA | $149/mo ($1,490/yr) | 100 + WS events | 100,000 |
|
|
252
258
|
|
|
253
259
|
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).
|
|
254
260
|
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const PORT = parseInt(process.env.PORT || "3100", 10);
|
|
|
11
11
|
const MODE = process.env.MCP_TRANSPORT || "stdio"; // "stdio" or "http"
|
|
12
12
|
let authMode = "none";
|
|
13
13
|
let paidFetch = fetch;
|
|
14
|
-
const UA = "mcp-server-madeonsol/1.10.
|
|
14
|
+
const UA = "mcp-server-madeonsol/1.10.2";
|
|
15
15
|
function apiKeyHeaders() {
|
|
16
16
|
const h = { "User-Agent": UA };
|
|
17
17
|
if (authMode === "madeonsol") {
|
|
@@ -866,7 +866,7 @@ async function main() {
|
|
|
866
866
|
res.end(JSON.stringify({
|
|
867
867
|
name: "madeonsol",
|
|
868
868
|
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.",
|
|
869
|
-
version: "1.10.
|
|
869
|
+
version: "1.10.2",
|
|
870
870
|
tools: [
|
|
871
871
|
{ name: "madeonsol_kol_feed", description: "Get real-time Solana KOL trades from 1,000+ tracked wallets." },
|
|
872
872
|
{ name: "madeonsol_kol_coordination", description: "Get KOL convergence signals — tokens multiple KOLs are accumulating." },
|
|
@@ -948,7 +948,7 @@ async function main() {
|
|
|
948
948
|
transport = new StreamableHTTPServerTransport({
|
|
949
949
|
sessionIdGenerator: undefined,
|
|
950
950
|
});
|
|
951
|
-
const server = new McpServer({ name: "madeonsol", version: "1.10.
|
|
951
|
+
const server = new McpServer({ name: "madeonsol", version: "1.10.2" });
|
|
952
952
|
registerTools(server);
|
|
953
953
|
await server.connect(transport);
|
|
954
954
|
}
|
|
@@ -986,7 +986,7 @@ async function main() {
|
|
|
986
986
|
}
|
|
987
987
|
else {
|
|
988
988
|
// Stdio transport for local use (Claude Desktop, Cursor, Claude Code)
|
|
989
|
-
const server = new McpServer({ name: "madeonsol", version: "1.10.
|
|
989
|
+
const server = new McpServer({ name: "madeonsol", version: "1.10.2" });
|
|
990
990
|
registerTools(server);
|
|
991
991
|
const transport = new StdioServerTransport();
|
|
992
992
|
await server.connect(transport);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-madeonsol",
|
|
3
|
-
"version": "1.10.
|
|
4
|
-
"mcpName": "io.github.
|
|
3
|
+
"version": "1.10.2",
|
|
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",
|
|
7
7
|
"bin": {
|