mcp-server-madeonsol 0.9.0 → 1.0.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 +32 -0
- package/dist/index.js +117 -32
- package/glama.json +38 -43
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,6 +13,8 @@ Two options (in priority order):
|
|
|
13
13
|
| **MadeOnSol API key** (recommended) | `MADEONSOL_API_KEY` | Developers — [get a free key](https://madeonsol.com/developer) |
|
|
14
14
|
| x402 micropayments | `SVM_PRIVATE_KEY` | AI agents with Solana wallets |
|
|
15
15
|
|
|
16
|
+
> **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).
|
|
17
|
+
|
|
16
18
|
## Install
|
|
17
19
|
|
|
18
20
|
```bash
|
|
@@ -76,6 +78,36 @@ Add to MCP settings with the same command and env vars.
|
|
|
76
78
|
| `madeonsol_wallet_tracker_trades` | Historical swap/transfer events for watched wallets (120-day retention) |
|
|
77
79
|
| `madeonsol_wallet_tracker_summary` | Per-wallet stats: swap counts, SOL bought/sold, last event |
|
|
78
80
|
|
|
81
|
+
### Alpha Wallet Intelligence
|
|
82
|
+
|
|
83
|
+
Scored from 47,000+ early-buyer records (wallets seen in the first 20 buyers of Pump.fun tokens).
|
|
84
|
+
|
|
85
|
+
| Tool | Tier | Description |
|
|
86
|
+
|---|---|---|
|
|
87
|
+
| `madeonsol_alpha_leaderboard` | BASIC+ | Top profitable early-buyer wallets. BASIC=25 (truncated), PRO=100, ULTRA=500 + bot signals |
|
|
88
|
+
| `madeonsol_alpha_wallet` | ULTRA | Full per-token breakdown + bot_signals array |
|
|
89
|
+
| `madeonsol_alpha_linked` | ULTRA | Wallets behaviorally linked (co-bought 3+ tokens within 2s) |
|
|
90
|
+
|
|
91
|
+
### Token Quality
|
|
92
|
+
|
|
93
|
+
| Tool | Tier | Description |
|
|
94
|
+
|---|---|---|
|
|
95
|
+
| `madeonsol_token_cap_table` | PRO+ | First non-deployer early buyers, enriched with PnL/KOL/bot flags. PRO=10, ULTRA=20 |
|
|
96
|
+
| `madeonsol_token_buyer_quality` | BASIC+ | 0–100 buyer-quality score (5-min cached). BASIC=score+signal only |
|
|
97
|
+
|
|
98
|
+
### Copy-Trade Rules (PRO/ULTRA)
|
|
99
|
+
|
|
100
|
+
Server-side rules that fire signals when a watched source wallet trades. Delivered via webhook (HMAC-signed) and/or WebSocket.
|
|
101
|
+
|
|
102
|
+
| Tool | Description |
|
|
103
|
+
|---|---|
|
|
104
|
+
| `madeonsol_copytrade_list` | List your rules |
|
|
105
|
+
| `madeonsol_copytrade_create` | Create a rule. Returns `webhook_secret` once — store it |
|
|
106
|
+
| `madeonsol_copytrade_get` | Get one rule |
|
|
107
|
+
| `madeonsol_copytrade_update` | Update fields or toggle `is_active` |
|
|
108
|
+
| `madeonsol_copytrade_delete` | Delete permanently |
|
|
109
|
+
| `madeonsol_copytrade_signals` | Recent fired signals (up to 7 days) |
|
|
110
|
+
|
|
79
111
|
### Streaming & Webhooks
|
|
80
112
|
|
|
81
113
|
| Tool | Description |
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,6 @@ 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
8
|
const MADEONSOL_API_KEY = process.env.MADEONSOL_API_KEY; // Native key from madeonsol.com/developer
|
|
9
|
-
const RAPIDAPI_KEY = process.env.RAPIDAPI_KEY; // RapidAPI subscription key
|
|
10
9
|
const PRIVATE_KEY = process.env.SVM_PRIVATE_KEY; // x402 micropayments (for AI agents)
|
|
11
10
|
const PORT = parseInt(process.env.PORT || "3100", 10);
|
|
12
11
|
const MODE = process.env.MCP_TRANSPORT || "stdio"; // "stdio" or "http"
|
|
@@ -16,12 +15,6 @@ function apiKeyHeaders() {
|
|
|
16
15
|
if (authMode === "madeonsol") {
|
|
17
16
|
return { Authorization: `Bearer ${MADEONSOL_API_KEY}` };
|
|
18
17
|
}
|
|
19
|
-
if (authMode === "rapidapi") {
|
|
20
|
-
return {
|
|
21
|
-
"x-rapidapi-key": RAPIDAPI_KEY,
|
|
22
|
-
"x-rapidapi-host": "madeonsol-solana-kol-tracker-tools-api.p.rapidapi.com",
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
18
|
return {};
|
|
26
19
|
}
|
|
27
20
|
async function initAuth() {
|
|
@@ -30,11 +23,6 @@ async function initAuth() {
|
|
|
30
23
|
console.error("[madeonsol-mcp] Using MadeOnSol API key (Bearer auth)");
|
|
31
24
|
return;
|
|
32
25
|
}
|
|
33
|
-
if (RAPIDAPI_KEY) {
|
|
34
|
-
authMode = "rapidapi";
|
|
35
|
-
console.error("[madeonsol-mcp] Using RapidAPI key");
|
|
36
|
-
return;
|
|
37
|
-
}
|
|
38
26
|
if (PRIVATE_KEY) {
|
|
39
27
|
try {
|
|
40
28
|
const { wrapFetchWithPayment } = await import("@x402/fetch");
|
|
@@ -54,10 +42,10 @@ async function initAuth() {
|
|
|
54
42
|
console.error("[madeonsol-mcp] x402 setup failed:", err);
|
|
55
43
|
}
|
|
56
44
|
}
|
|
57
|
-
console.error("[madeonsol-mcp] No auth configured. Set MADEONSOL_API_KEY (get one free at madeonsol.com/developer)
|
|
45
|
+
console.error("[madeonsol-mcp] No auth configured. Set MADEONSOL_API_KEY (get one free at madeonsol.com/developer) or SVM_PRIVATE_KEY.");
|
|
58
46
|
}
|
|
59
47
|
async function query(path, params) {
|
|
60
|
-
// API key
|
|
48
|
+
// API key uses /api/v1/ endpoints; x402 uses /api/x402/
|
|
61
49
|
const apiPath = authMode === "x402" || authMode === "none"
|
|
62
50
|
? path
|
|
63
51
|
: path.replace("/api/x402/", "/api/v1/");
|
|
@@ -155,8 +143,7 @@ function registerTools(server) {
|
|
|
155
143
|
wallet: z.string().describe("KOL wallet address (base58)"),
|
|
156
144
|
period: z.enum(["7d", "30d"]).default("30d").describe("Time period: 7d or 30d"),
|
|
157
145
|
}, readOnlyAnnotations, async ({ wallet, period }) => {
|
|
158
|
-
|
|
159
|
-
if (hasRestAuth) {
|
|
146
|
+
if (authMode === "madeonsol") {
|
|
160
147
|
const headers = { ...apiKeyHeaders() };
|
|
161
148
|
const res = await fetch(`${BASE_URL}/api/v1/kol/${wallet}/timing?period=${period}`, { headers });
|
|
162
149
|
if (!res.ok) {
|
|
@@ -165,13 +152,12 @@ function registerTools(server) {
|
|
|
165
152
|
}
|
|
166
153
|
return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
|
|
167
154
|
}
|
|
168
|
-
return { content: [{ type: "text", text: "KOL timing requires
|
|
155
|
+
return { content: [{ type: "text", text: "KOL timing requires MADEONSOL_API_KEY (msk_) — get one free at madeonsol.com/developer." }] };
|
|
169
156
|
});
|
|
170
157
|
server.tool("madeonsol_deployer_trajectory", "Deployer skill curve — streaks, rolling bond rate, improvement trend, and deployment cadence for a Pump.fun deployer.", {
|
|
171
158
|
wallet: z.string().describe("Deployer wallet address (base58)"),
|
|
172
159
|
}, readOnlyAnnotations, async ({ wallet }) => {
|
|
173
|
-
|
|
174
|
-
if (hasRestAuth) {
|
|
160
|
+
if (authMode === "madeonsol") {
|
|
175
161
|
const headers = { ...apiKeyHeaders() };
|
|
176
162
|
const res = await fetch(`${BASE_URL}/api/v1/deployer-hunter/${wallet}/trajectory`, { headers });
|
|
177
163
|
if (!res.ok) {
|
|
@@ -180,7 +166,7 @@ function registerTools(server) {
|
|
|
180
166
|
}
|
|
181
167
|
return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
|
|
182
168
|
}
|
|
183
|
-
return { content: [{ type: "text", text: "Deployer trajectory requires
|
|
169
|
+
return { content: [{ type: "text", text: "Deployer trajectory requires MADEONSOL_API_KEY (msk_, Pro/Ultra) — get one at madeonsol.com/developer." }] };
|
|
184
170
|
});
|
|
185
171
|
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.", {
|
|
186
172
|
period: z.enum(["1h", "6h"]).default("6h").describe("Time period: 1h or 6h"),
|
|
@@ -224,8 +210,7 @@ function registerTools(server) {
|
|
|
224
210
|
wallet: z.string().describe("KOL wallet address (base58)"),
|
|
225
211
|
period: z.enum(["7d", "30d", "90d", "180d"]).default("30d").describe("Time period for PnL calculation"),
|
|
226
212
|
}, readOnlyAnnotations, async ({ wallet, period }) => {
|
|
227
|
-
|
|
228
|
-
if (hasRestAuth) {
|
|
213
|
+
if (authMode === "madeonsol") {
|
|
229
214
|
const headers = { ...apiKeyHeaders() };
|
|
230
215
|
const res = await fetch(`${BASE_URL}/api/v1/kol/${wallet}/pnl?period=${period}`, { headers });
|
|
231
216
|
if (!res.ok) {
|
|
@@ -234,7 +219,7 @@ function registerTools(server) {
|
|
|
234
219
|
}
|
|
235
220
|
return { content: [{ type: "text", text: JSON.stringify(await res.json(), null, 2) }] };
|
|
236
221
|
}
|
|
237
|
-
return { content: [{ type: "text", text: "KOL PnL requires
|
|
222
|
+
return { content: [{ type: "text", text: "KOL PnL requires MADEONSOL_API_KEY (msk_) — get one free at madeonsol.com/developer." }] };
|
|
238
223
|
});
|
|
239
224
|
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.", {
|
|
240
225
|
period: z.enum(["5m", "15m", "30m", "1h", "2h", "4h", "12h"]).default("1h").describe("Time window"),
|
|
@@ -250,7 +235,7 @@ function registerTools(server) {
|
|
|
250
235
|
});
|
|
251
236
|
// ── Wallet Tracker tools (REST auth only — all mutating operations) ──
|
|
252
237
|
{
|
|
253
|
-
const hasRestAuth = authMode === "madeonsol"
|
|
238
|
+
const hasRestAuth = authMode === "madeonsol";
|
|
254
239
|
async function walletTrackerRequest(method, path, body) {
|
|
255
240
|
const headers = { "Content-Type": "application/json", ...apiKeyHeaders() };
|
|
256
241
|
const res = await fetch(`${BASE_URL}/api/v1${path}`, {
|
|
@@ -320,11 +305,11 @@ function registerTools(server) {
|
|
|
320
305
|
console.error("[madeonsol-mcp] Wallet tracker tools enabled");
|
|
321
306
|
}
|
|
322
307
|
else {
|
|
323
|
-
console.error("[madeonsol-mcp] Wallet tracker tools disabled (requires MADEONSOL_API_KEY
|
|
308
|
+
console.error("[madeonsol-mcp] Wallet tracker tools disabled (requires MADEONSOL_API_KEY)");
|
|
324
309
|
}
|
|
325
310
|
}
|
|
326
|
-
// ── Webhook & Streaming tools (require API key
|
|
327
|
-
const hasRestAuth = authMode === "madeonsol"
|
|
311
|
+
// ── Webhook & Streaming tools (require MadeOnSol API key — Pro/Ultra tier) ──
|
|
312
|
+
const hasRestAuth = authMode === "madeonsol";
|
|
328
313
|
if (hasRestAuth) {
|
|
329
314
|
async function restQuery(method, path, body) {
|
|
330
315
|
const headers = {
|
|
@@ -375,10 +360,99 @@ function registerTools(server) {
|
|
|
375
360
|
server.tool("madeonsol_stream_token", "Generate a 24h WebSocket streaming token. Includes ws_url for KOL/deployer streaming (Pro/Ultra) and dex_ws_url for all-DEX trade streaming (Ultra only).", {}, { readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }, async () => ({
|
|
376
361
|
content: [{ type: "text", text: await restQuery("POST", "/stream/token") }],
|
|
377
362
|
}));
|
|
363
|
+
// ── Alpha wallet intelligence ──
|
|
364
|
+
server.tool("madeonsol_alpha_leaderboard", "Top statistically profitable early-buyer wallets, scored from 47,000+ early-buyer records. BASIC=25 (truncated), PRO=100, ULTRA=500 + bot signals.", {
|
|
365
|
+
period: z.enum(["7d", "30d", "all"]).default("30d").describe("Time window"),
|
|
366
|
+
min_tokens: z.number().min(1).max(20).default(5).describe("Minimum tokens traded by wallet (1-20)"),
|
|
367
|
+
sort: z.enum(["win_rate", "pnl", "roi"]).default("win_rate").describe("Sort axis"),
|
|
368
|
+
exclude_bots: z.boolean().default(true).describe("Exclude wallets flagged as bots"),
|
|
369
|
+
}, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ period, min_tokens, sort, exclude_bots }) => {
|
|
370
|
+
const params = { period, min_tokens, sort, exclude_bots: exclude_bots ? "true" : "false" };
|
|
371
|
+
const url = new URL(`${BASE_URL}/api/v1/alpha/leaderboard`);
|
|
372
|
+
for (const [k, v] of Object.entries(params))
|
|
373
|
+
url.searchParams.set(k, String(v));
|
|
374
|
+
const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
|
|
375
|
+
const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
|
|
376
|
+
return { content: [{ type: "text", text }] };
|
|
377
|
+
});
|
|
378
|
+
server.tool("madeonsol_alpha_wallet", "Full alpha profile for one wallet — per-token breakdown + bot_signals array. ULTRA only.", { wallet: z.string().describe("Wallet address (base58)") }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ wallet }) => ({
|
|
379
|
+
content: [{ type: "text", text: await restQuery("GET", `/alpha/${encodeURIComponent(wallet)}`) }],
|
|
380
|
+
}));
|
|
381
|
+
server.tool("madeonsol_alpha_linked", "Wallets behaviorally linked to a target wallet (co-bought 3+ tokens within 2 seconds). ULTRA only.", { wallet: z.string().describe("Wallet address (base58)") }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ wallet }) => ({
|
|
382
|
+
content: [{ type: "text", text: await restQuery("GET", `/alpha/${encodeURIComponent(wallet)}/linked`) }],
|
|
383
|
+
}));
|
|
384
|
+
// ── Token quality ──
|
|
385
|
+
server.tool("madeonsol_token_cap_table", "First non-deployer early buyers for a token, enriched with PnL, KOL identity, and bot flags. PRO=top 10 (truncated wallets), ULTRA=top 20 (full). BASIC: 403.", { mint: z.string().describe("Token mint address (base58)") }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ mint }) => ({
|
|
386
|
+
content: [{ type: "text", text: await restQuery("GET", `/tokens/${encodeURIComponent(mint)}/cap-table`) }],
|
|
387
|
+
}));
|
|
388
|
+
server.tool("madeonsol_token_buyer_quality", "0–100 buyer-quality score for a token's first-buyer cohort. 5-min cached. BASIC: score+signal only. PRO/ULTRA: full breakdown.", { mint: z.string().describe("Token mint address (base58)") }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ mint }) => ({
|
|
389
|
+
content: [{ type: "text", text: await restQuery("GET", `/tokens/${encodeURIComponent(mint)}/buyer-quality`) }],
|
|
390
|
+
}));
|
|
391
|
+
// ── Copy-Trade rules (PRO/ULTRA) ──
|
|
392
|
+
server.tool("madeonsol_copytrade_list", "List your copy-trade rules. PRO=3 rules, ULTRA=20 rules.", {}, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async () => ({
|
|
393
|
+
content: [{ type: "text", text: await restQuery("GET", "/copytrade/subscriptions") }],
|
|
394
|
+
}));
|
|
395
|
+
server.tool("madeonsol_copytrade_create", "Create a copy-trade rule. Returns webhook_secret ONCE on creation when delivery_mode includes 'webhook' — store it to verify HMAC signatures. PRO=5 source_wallets/rule, ULTRA=50.", {
|
|
396
|
+
source_wallets: z.array(z.string()).min(1).max(50).describe("Wallets to mirror (base58)"),
|
|
397
|
+
sizing_amount: z.number().describe("Amount used by the chosen sizing_mode"),
|
|
398
|
+
name: z.string().optional().describe("Optional human label"),
|
|
399
|
+
min_trade_sol: z.number().optional().describe("Minimum source-wallet trade size to fire a signal"),
|
|
400
|
+
only_action: z.enum(["buy", "sell", "both"]).optional().describe("Filter to one side (default 'both')"),
|
|
401
|
+
sizing_mode: z.enum(["fixed", "proportional", "percent_source"]).optional().describe("How sizing_amount is interpreted"),
|
|
402
|
+
delivery_mode: z.enum(["webhook", "websocket", "both"]).optional().describe("Where to deliver fired signals"),
|
|
403
|
+
webhook_url: z.string().url().optional().describe("Required when delivery_mode includes 'webhook'"),
|
|
404
|
+
}, { readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }, async (args) => {
|
|
405
|
+
const body = { source_wallets: args.source_wallets, sizing_amount: args.sizing_amount };
|
|
406
|
+
for (const k of ["name", "min_trade_sol", "only_action", "sizing_mode", "delivery_mode", "webhook_url"]) {
|
|
407
|
+
if (args[k] !== undefined)
|
|
408
|
+
body[k] = args[k];
|
|
409
|
+
}
|
|
410
|
+
return { content: [{ type: "text", text: await restQuery("POST", "/copytrade/subscriptions", body) }] };
|
|
411
|
+
});
|
|
412
|
+
server.tool("madeonsol_copytrade_get", "Get one copy-trade rule by id.", { id: z.number().describe("Subscription id") }, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ id }) => ({
|
|
413
|
+
content: [{ type: "text", text: await restQuery("GET", `/copytrade/subscriptions/${id}`) }],
|
|
414
|
+
}));
|
|
415
|
+
server.tool("madeonsol_copytrade_update", "Update fields on a copy-trade rule, including is_active toggle.", {
|
|
416
|
+
id: z.number().describe("Subscription id"),
|
|
417
|
+
name: z.string().nullable().optional(),
|
|
418
|
+
source_wallets: z.array(z.string()).optional(),
|
|
419
|
+
min_trade_sol: z.number().optional(),
|
|
420
|
+
only_action: z.enum(["buy", "sell", "both"]).optional(),
|
|
421
|
+
sizing_mode: z.enum(["fixed", "proportional", "percent_source"]).optional(),
|
|
422
|
+
sizing_amount: z.number().optional(),
|
|
423
|
+
delivery_mode: z.enum(["webhook", "websocket", "both"]).optional(),
|
|
424
|
+
webhook_url: z.string().url().nullable().optional(),
|
|
425
|
+
is_active: z.boolean().optional(),
|
|
426
|
+
}, { readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }, async ({ id, ...patch }) => {
|
|
427
|
+
const body = {};
|
|
428
|
+
for (const [k, v] of Object.entries(patch)) {
|
|
429
|
+
if (v !== undefined)
|
|
430
|
+
body[k] = v;
|
|
431
|
+
}
|
|
432
|
+
return { content: [{ type: "text", text: await restQuery("PATCH", `/copytrade/subscriptions/${id}`, body) }] };
|
|
433
|
+
});
|
|
434
|
+
server.tool("madeonsol_copytrade_delete", "Delete a copy-trade rule permanently.", { id: z.number().describe("Subscription id") }, { readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: true }, async ({ id }) => ({
|
|
435
|
+
content: [{ type: "text", text: await restQuery("DELETE", `/copytrade/subscriptions/${id}`) }],
|
|
436
|
+
}));
|
|
437
|
+
server.tool("madeonsol_copytrade_signals", "Recent fired copy-trade signals (up to 7 days). Filter by subscription_id, since (ISO8601), and limit (1–500).", {
|
|
438
|
+
subscription_id: z.number().optional().describe("Filter to one rule"),
|
|
439
|
+
since: z.string().optional().describe("ISO8601 timestamp — only signals fired at-or-after this time"),
|
|
440
|
+
limit: z.number().min(1).max(500).default(50).describe("Max signals to return (1–500)"),
|
|
441
|
+
}, { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }, async ({ subscription_id, since, limit }) => {
|
|
442
|
+
const url = new URL(`${BASE_URL}/api/v1/copytrade/signals`);
|
|
443
|
+
url.searchParams.set("limit", String(limit));
|
|
444
|
+
if (subscription_id !== undefined)
|
|
445
|
+
url.searchParams.set("subscription_id", String(subscription_id));
|
|
446
|
+
if (since)
|
|
447
|
+
url.searchParams.set("since", since);
|
|
448
|
+
const res = await fetch(url.toString(), { headers: { "Content-Type": "application/json", ...apiKeyHeaders() } });
|
|
449
|
+
const text = res.ok ? JSON.stringify(await res.json(), null, 2) : `Error ${res.status}: ${await res.text().catch(() => "")}`;
|
|
450
|
+
return { content: [{ type: "text", text }] };
|
|
451
|
+
});
|
|
378
452
|
console.error("[madeonsol-mcp] Webhook & streaming tools enabled");
|
|
379
453
|
}
|
|
380
454
|
else {
|
|
381
|
-
console.error("[madeonsol-mcp] Webhook/streaming tools disabled (requires MADEONSOL_API_KEY
|
|
455
|
+
console.error("[madeonsol-mcp] Webhook/streaming tools disabled (requires MADEONSOL_API_KEY)");
|
|
382
456
|
}
|
|
383
457
|
// Prompts — pre-built analysis templates
|
|
384
458
|
server.prompt("solana_kol_analysis", "Analyze current Solana KOL trading activity — what are smart money wallets buying and selling?", { period: z.string().default("24h").describe("Time period: 1h, 6h, 24h, or 7d") }, ({ period }) => ({
|
|
@@ -418,8 +492,8 @@ async function main() {
|
|
|
418
492
|
res.writeHead(200, { "Content-Type": "application/json" });
|
|
419
493
|
res.end(JSON.stringify({
|
|
420
494
|
name: "madeonsol",
|
|
421
|
-
description: "Solana KOL trading intelligence and deployer analytics. Real-time data from 1,000+ KOL wallets
|
|
422
|
-
version: "
|
|
495
|
+
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.",
|
|
496
|
+
version: "1.0.0",
|
|
423
497
|
tools: [
|
|
424
498
|
{ name: "madeonsol_kol_feed", description: "Get real-time Solana KOL trades from 1,000+ tracked wallets." },
|
|
425
499
|
{ name: "madeonsol_kol_coordination", description: "Get KOL convergence signals — tokens multiple KOLs are accumulating." },
|
|
@@ -445,6 +519,17 @@ async function main() {
|
|
|
445
519
|
{ name: "madeonsol_wallet_tracker_remove", description: "Remove a wallet from your watchlist." },
|
|
446
520
|
{ name: "madeonsol_wallet_tracker_trades", description: "Historical swap/transfer events for watched wallets." },
|
|
447
521
|
{ name: "madeonsol_wallet_tracker_summary", description: "Per-wallet stats: swap counts, SOL bought/sold." },
|
|
522
|
+
{ name: "madeonsol_alpha_leaderboard", description: "Top profitable early-buyer wallets — 47,000+ scored. BASIC=25, PRO=100, ULTRA=500." },
|
|
523
|
+
{ name: "madeonsol_alpha_wallet", description: "Full alpha profile + bot signals for one wallet. ULTRA only." },
|
|
524
|
+
{ name: "madeonsol_alpha_linked", description: "Behaviorally linked wallets (co-bought 3+ tokens within 2s). ULTRA only." },
|
|
525
|
+
{ name: "madeonsol_token_cap_table", description: "First non-deployer early buyers for a token, enriched. PRO=10, ULTRA=20." },
|
|
526
|
+
{ name: "madeonsol_token_buyer_quality", description: "0–100 buyer quality score for a token's first-buyer cohort." },
|
|
527
|
+
{ name: "madeonsol_copytrade_list", description: "List your copy-trade rules. PRO/ULTRA." },
|
|
528
|
+
{ name: "madeonsol_copytrade_create", description: "Create a copy-trade rule with webhook + WS delivery. PRO/ULTRA." },
|
|
529
|
+
{ name: "madeonsol_copytrade_get", description: "Get one copy-trade rule. PRO/ULTRA." },
|
|
530
|
+
{ name: "madeonsol_copytrade_update", description: "Update a copy-trade rule. PRO/ULTRA." },
|
|
531
|
+
{ name: "madeonsol_copytrade_delete", description: "Delete a copy-trade rule. PRO/ULTRA." },
|
|
532
|
+
{ name: "madeonsol_copytrade_signals", description: "Recent fired copy-trade signals (up to 7 days). PRO/ULTRA." },
|
|
448
533
|
],
|
|
449
534
|
homepage: "https://madeonsol.com/solana-api",
|
|
450
535
|
repository: "https://github.com/LamboPoewert/mcp-server-madeonsol",
|
|
@@ -460,7 +545,7 @@ async function main() {
|
|
|
460
545
|
transport = new StreamableHTTPServerTransport({
|
|
461
546
|
sessionIdGenerator: undefined,
|
|
462
547
|
});
|
|
463
|
-
const server = new McpServer({ name: "madeonsol", version: "
|
|
548
|
+
const server = new McpServer({ name: "madeonsol", version: "1.0.0" });
|
|
464
549
|
registerTools(server);
|
|
465
550
|
await server.connect(transport);
|
|
466
551
|
}
|
|
@@ -498,7 +583,7 @@ async function main() {
|
|
|
498
583
|
}
|
|
499
584
|
else {
|
|
500
585
|
// Stdio transport for local use (Claude Desktop, Cursor, Claude Code)
|
|
501
|
-
const server = new McpServer({ name: "madeonsol", version: "
|
|
586
|
+
const server = new McpServer({ name: "madeonsol", version: "1.0.0" });
|
|
502
587
|
registerTools(server);
|
|
503
588
|
const transport = new StdioServerTransport();
|
|
504
589
|
await server.connect(transport);
|
package/glama.json
CHANGED
|
@@ -1,54 +1,49 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-madeonsol",
|
|
3
3
|
"display_name": "MadeOnSol",
|
|
4
|
-
"description": "Solana KOL trading intelligence and deployer analytics. Real-time data from
|
|
5
|
-
"version": "0.
|
|
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",
|
|
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"],
|
|
10
|
+
"tags": ["solana", "kol", "trading", "x402", "micropayments", "defi", "api", "deployer", "pump-fun", "copy-trade"],
|
|
11
11
|
"tools": [
|
|
12
|
-
{
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "madeonsol_stream_token",
|
|
50
|
-
"description": "Get a 24h WebSocket streaming token. Pro/Ultra."
|
|
51
|
-
}
|
|
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." },
|
|
16
|
+
{ "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
|
+
{ "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)." },
|
|
22
|
+
{ "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." },
|
|
33
|
+
{ "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." }
|
|
52
47
|
],
|
|
53
48
|
"transports": ["stdio", "http"],
|
|
54
49
|
"runtime": "node"
|
package/package.json
CHANGED