cryptoiz-mcp 4.15.11 → 4.15.13

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.
Files changed (4) hide show
  1. package/README.md +69 -23
  2. package/index.js +1 -1
  3. package/package.json +11 -2
  4. package/setup.js +1 -1
package/README.md CHANGED
@@ -1,51 +1,97 @@
1
1
  # CryptoIZ MCP Server
2
2
 
3
- Solana DEX trading signals for Claude Desktop via x402 USDC micropayments.
3
+ AI-powered Solana DEX smart money signals for Claude Desktop. Pay per call with USDC on Solana via x402 Dexter protocol.
4
4
 
5
- ## v4.15.0 x402 V2 (Dexter Facilitator)
5
+ ## Quick Install (2 commands)
6
6
 
7
- **NEW:** Dexter facilitator sponsors gas fees. Users only need USDC, no SOL required for transaction fees.
7
+ ```bash
8
+ npm install -g cryptoiz-mcp
9
+ npx cryptoiz-mcp-setup YOUR_SOLANA_PRIVATE_KEY
10
+ ```
8
11
 
9
- ### Payment Protocol
12
+ Auto-detects OS, finds Claude Desktop config (including Windows MSIX), writes correct config. Restart Claude Desktop and type `get_status`.
10
13
 
11
- - **V2 (default):** Client builds partially-signed tx → edge function forwards to Dexter `/settle` → Dexter adds feePayer signature, submits on-chain, sponsors gas
12
- - **V1 (fallback):** Client sends USDC on-chain → edge function verifies via Solana RPC
14
+ ## Prerequisites
13
15
 
14
- ### Setup
16
+ 1. **Node.js** v18+ from nodejs.org
17
+ 2. **Claude Desktop** from claude.ai/download
18
+ 3. **Solana wallet** with $1-5 USDC (no SOL needed, Dexter sponsors gas)
15
19
 
16
- ```bash
17
- npm install -g cryptoiz-mcp@4.15.0
20
+ ## Tools and Pricing
21
+
22
+ | Tool | Price | Data |
23
+ |------|-------|------|
24
+ | get_alpha_scanner | $0.05 | 20 smart money whale/dolphin signals |
25
+ | get_divergence | $0.02 | 20 divergence signals (3 types) |
26
+ | get_accumulation | $0.02 | 20 tokens with 4D scoring |
27
+ | get_btc_regime | $0.01 | BTC macro + Fear/Greed + technicals |
28
+ | get_token_ca | FREE | Contract address lookup |
29
+ | get_status | FREE | Server health check |
30
+
31
+ ## Manual Config (if auto-installer fails)
32
+
33
+ ### macOS
34
+ Config: ~/Library/Application Support/Claude/claude_desktop_config.json
35
+
36
+ ```json
37
+ {
38
+ "mcpServers": {
39
+ "cryptoiz": {
40
+ "command": "npx",
41
+ "args": ["-y", "cryptoiz-mcp"],
42
+ "env": {
43
+ "SVM_PRIVATE_KEY": "your-base58-private-key"
44
+ }
45
+ }
46
+ }
47
+ }
18
48
  ```
19
49
 
20
- ### Claude Desktop Config (Windows)
50
+ ### Windows
51
+ IMPORTANT: npx does NOT work on Windows. Use absolute paths.
52
+
53
+ Config location depends on install type:
54
+ - MSIX (most common): %LOCALAPPDATA%\Packages\Claude_pzs8sxrjxfjjc\LocalCache\Roaming\Claude\claude_desktop_config.json
55
+ - Standard: %APPDATA%\Claude\claude_desktop_config.json
56
+
57
+ Check: run `dir "$env:LOCALAPPDATA\Packages\Claude*"` in PowerShell. If folder exists = MSIX.
21
58
 
22
59
  ```json
23
60
  {
24
61
  "mcpServers": {
25
62
  "cryptoiz": {
26
63
  "command": "C:\\Program Files\\nodejs\\node.exe",
27
- "args": ["C:\\Users\\CRYPT0_iz\\AppData\\Roaming\\npm\\node_modules\\cryptoiz-mcp\\index.js"],
64
+ "args": ["C:\\Users\\YOUR_USERNAME\\AppData\\Roaming\\npm\\node_modules\\cryptoiz-mcp\\index.js"],
28
65
  "env": {
29
- "SVM_PRIVATE_KEY": "your-base58-solana-private-key"
66
+ "SVM_PRIVATE_KEY": "your-base58-private-key"
30
67
  }
31
68
  }
32
69
  }
33
70
  }
34
71
  ```
35
72
 
36
- ### Tools & Pricing
73
+ ## Troubleshooting
37
74
 
38
- | Tool | Price | Data |
39
- |------|-------|------|
40
- | `get_alpha_scanner` | $0.05 USDC | 20 smart money signals |
41
- | `get_divergence` | $0.02 USDC | 20 divergence signals |
42
- | `get_accumulation` | $0.02 USDC | 20 accumulation tokens |
43
- | `get_btc_regime` | $0.01 USDC | BTC macro + technicals |
44
- | `get_token_ca` | FREE | Contract address lookup |
45
- | `get_status` | FREE | Server status |
75
+ **"No servers added" after setup:**
76
+ Config written to wrong path. Windows MSIX reads from LocalAppData, not AppData. Copy:
77
+ ```powershell
78
+ copy "$env:APPDATA\Claude\claude_desktop_config.json" "$env:LOCALAPPDATA\Packages\Claude_pzs8sxrjxfjjc\LocalCache\Roaming\Claude\claude_desktop_config.json"
79
+ ```
80
+
81
+ **"spawn npx ENOENT" on Windows:**
82
+ Use absolute paths, not npx. See Windows config above.
83
+
84
+ **Server disconnected:**
85
+ Check logs: Get-Content "$env:APPDATA\Claude\logs\mcp-server-cryptoiz.log" -Tail 30
86
+
87
+ ## Security
88
+
89
+ Private key stored only in local config. Never sent to CryptoIZ. Gas sponsored by Dexter. Use a dedicated wallet.
46
90
 
47
- ### Links
91
+ ## Links
48
92
 
93
+ - Guide: https://cryptoiz.org/McpLanding
49
94
  - Platform: https://cryptoiz.org
50
- - Setup Guide: https://cryptoiz.org/McpLanding
95
+ - Dexter: https://dexter.cash/sellers/DsKmdkYx49Xc1WhqMUAztwhdYPTqieyC98VmnnJdgpXX
51
96
  - Twitter: @cryptoiz_IDN
97
+ - npm: https://www.npmjs.com/package/cryptoiz-mcp
package/index.js CHANGED
@@ -9,7 +9,7 @@ import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprot
9
9
  import { Connection, Keypair, PublicKey, Transaction, SystemProgram, VersionedTransaction, TransactionMessage } from '@solana/web3.js';
10
10
  import bs58 from 'bs58';
11
11
 
12
- var VERSION = 'v4.15.11';
12
+ var VERSION = 'v4.15.13';
13
13
  var GATEWAY = 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-x402-gateway';
14
14
  // Per-tool endpoints for Dexter settlement naming
15
15
  var TOOL_ENDPOINTS = {
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "cryptoiz-mcp",
3
- "version": "4.15.11",
3
+ "version": "4.15.13",
4
+ "mcpName": "io.github.dadang11/cryptoiz",
4
5
  "description": "CryptoIZ MCP Server - Solana DEX trading signals via Claude Desktop with x402 USDC micropayments (V2 Dexter facilitator)",
5
6
  "main": "index.js",
6
7
  "type": "module",
@@ -24,13 +25,21 @@
24
25
  },
25
26
  "keywords": [
26
27
  "mcp",
28
+ "mcp-server",
27
29
  "claude",
28
30
  "solana",
29
31
  "crypto",
30
32
  "trading",
31
33
  "x402",
32
34
  "usdc",
33
- "dexter"
35
+ "dexter",
36
+ "whale-tracking",
37
+ "smart-money",
38
+ "alpha-signals",
39
+ "divergence",
40
+ "accumulation",
41
+ "defi",
42
+ "dex"
34
43
  ],
35
44
  "author": "CryptoIZ",
36
45
  "license": "MIT",
package/setup.js CHANGED
@@ -4,7 +4,7 @@ import path from 'path';
4
4
  import os from 'os';
5
5
  import { execSync } from 'child_process';
6
6
 
7
- var VERSION = 'v4.15.11';
7
+ var VERSION = 'v4.15.13';
8
8
  function print(msg) { process.stdout.write(msg + '\n'); }
9
9
 
10
10
  function findConfigPath() {