mcp-server-madeonsol 1.10.1 → 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 +3 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -252,10 +252,9 @@ CRUD for token dip/recovery price alerts. Fires when a token's market cap crosse
|
|
|
252
252
|
|
|
253
253
|
| Tier | Price | Wallets tracked | Requests/day |
|
|
254
254
|
|------|-------|-----------------|--------------|
|
|
255
|
-
|
|
|
256
|
-
|
|
|
257
|
-
|
|
|
258
|
-
| Ultra | $299/mo | 100 + WS events | 100,000 |
|
|
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 |
|
|
259
258
|
|
|
260
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).
|
|
261
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-madeonsol",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.2",
|
|
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",
|