mcp-server-madeonsol 1.0.0 → 1.0.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 +15 -1
- package/dist/index.js +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,20 @@ 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
|
+
## Quick start (10 seconds)
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g mcp-server-madeonsol
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Add to `claude_desktop_config.json` or Cursor MCP settings (free key: https://madeonsol.com/developer):
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{ "mcpServers": { "madeonsol": { "command": "mcp-server-madeonsol", "env": { "MADEONSOL_API_KEY": "msk_..." } } } }
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Restart Claude Desktop and ask: *"What are KOLs buying right now?"*
|
|
20
|
+
|
|
7
21
|
## Authentication
|
|
8
22
|
|
|
9
23
|
Two options (in priority order):
|
|
@@ -130,7 +144,7 @@ Server-side rules that fire signals when a watched source wallet trades. Deliver
|
|
|
130
144
|
|------|-------|-----------------|--------------|
|
|
131
145
|
| BASIC | Free | 10 | 200 |
|
|
132
146
|
| PRO | $49/mo | 50 | 10,000 |
|
|
133
|
-
| ULTRA | $
|
|
147
|
+
| ULTRA | $149/mo | 100 + WS events | 100,000 |
|
|
134
148
|
|
|
135
149
|
Get a key at [madeonsol.com/developer](https://madeonsol.com/developer).
|
|
136
150
|
|
package/dist/index.js
CHANGED
|
@@ -42,7 +42,9 @@ async function initAuth() {
|
|
|
42
42
|
console.error("[madeonsol-mcp] x402 setup failed:", err);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
-
console.error("[madeonsol-mcp] No auth configured
|
|
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" +
|
|
47
|
+
" → Or set SVM_PRIVATE_KEY for x402 micropayments.\n");
|
|
46
48
|
}
|
|
47
49
|
async function query(path, params) {
|
|
48
50
|
// API key uses /api/v1/ endpoints; x402 uses /api/x402/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-madeonsol",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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",
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
"@solana/kit": ">=2.0.0",
|
|
43
43
|
"@scure/base": ">=1.0.0"
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|