cryptoiz-mcp 4.16.1 → 4.16.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/index.js +2 -2
- package/package.json +54 -54
- package/server.json +3 -3
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
// CryptoIZ MCP Server v4.16.0
|
|
3
3
|
// Whale Intelligence Suite: 6 paid tools + 2 free
|
|
4
4
|
// x402 V2: Dexter facilitator (gas sponsored) + V1 backward compat
|
|
@@ -10,7 +10,7 @@ import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprot
|
|
|
10
10
|
import { Connection, Keypair, PublicKey, Transaction, SystemProgram, VersionedTransaction, TransactionMessage } from '@solana/web3.js';
|
|
11
11
|
import bs58 from 'bs58';
|
|
12
12
|
|
|
13
|
-
var VERSION = 'v4.16.
|
|
13
|
+
var VERSION = 'v4.16.2';
|
|
14
14
|
var GATEWAY = 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-x402-gateway';
|
|
15
15
|
// Per-tool endpoints for Dexter settlement naming
|
|
16
16
|
var TOOL_ENDPOINTS = {
|
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "cryptoiz-mcp",
|
|
3
|
+
"version": "4.16.2",
|
|
4
|
+
"mcpName": "io.github.dadang11/cryptoiz",
|
|
5
|
+
"description": "CryptoIZ MCP Server - Solana DEX whale intelligence via Claude Desktop with x402 USDC micropayments (V2 Dexter facilitator)",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"cryptoiz-mcp-setup": "./setup.js",
|
|
10
|
+
"cryptoiz-mcp": "./index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js",
|
|
14
|
+
"setup.js",
|
|
15
|
+
"package.json",
|
|
16
|
+
"README.md",
|
|
17
|
+
"server.json"
|
|
18
|
+
],
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
21
|
+
"@solana/web3.js": "^1.95.8",
|
|
22
|
+
"bs58": "^6.0.0"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"mcp",
|
|
29
|
+
"mcp-server",
|
|
30
|
+
"claude",
|
|
31
|
+
"solana",
|
|
32
|
+
"crypto",
|
|
33
|
+
"trading",
|
|
34
|
+
"x402",
|
|
35
|
+
"usdc",
|
|
36
|
+
"dexter",
|
|
37
|
+
"whale-tracking",
|
|
38
|
+
"whale-intelligence",
|
|
39
|
+
"smart-money",
|
|
40
|
+
"alpha-signals",
|
|
41
|
+
"divergence",
|
|
42
|
+
"accumulation",
|
|
43
|
+
"distribution",
|
|
44
|
+
"defi",
|
|
45
|
+
"dex"
|
|
46
|
+
],
|
|
47
|
+
"author": "CryptoIZ",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"homepage": "https://cryptoiz.org/McpLanding",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/dadang11/cryptoiz-mcp"
|
|
53
|
+
}
|
|
54
|
+
}
|
package/server.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
3
|
"name": "io.github.dadang11/cryptoiz",
|
|
4
4
|
"description": "AI-powered Solana DEX smart money signals. Get whale/dolphin accumulation alerts, price-volume divergence detection, alpha scanner with 20 top-scoring tokens, and BTC macro regime analysis. Pay-per-call via x402 USDC on Solana — no subscription, no API key needed.",
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"url": "https://github.com/dadang11/cryptoiz-mcp",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "4.16.
|
|
10
|
+
"version": "4.16.2",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registry_type": "npm",
|
|
14
14
|
"registry_base_url": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "cryptoiz-mcp",
|
|
16
|
-
"version": "4.16.
|
|
16
|
+
"version": "4.16.2",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|