cryptoiz-mcp 4.15.10 → 4.15.11
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 +1 -1
- package/package.json +1 -1
- package/setup.js +5 -3
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.
|
|
12
|
+
var VERSION = 'v4.15.11';
|
|
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
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.
|
|
7
|
+
var VERSION = 'v4.15.11';
|
|
8
8
|
function print(msg) { process.stdout.write(msg + '\n'); }
|
|
9
9
|
|
|
10
10
|
function findConfigPath() {
|
|
@@ -12,8 +12,7 @@ function findConfigPath() {
|
|
|
12
12
|
if (p === 'darwin') {
|
|
13
13
|
candidates.push(path.join(os.homedir(), 'Library', 'Application Support', 'Claude', 'claude_desktop_config.json'));
|
|
14
14
|
} else if (p === 'win32') {
|
|
15
|
-
|
|
16
|
-
candidates.push(path.join(appdata, 'Claude', 'claude_desktop_config.json'));
|
|
15
|
+
// MSIX path FIRST (priority) — most Windows Claude Desktop installs are MSIX
|
|
17
16
|
var localAppData = process.env.LOCALAPPDATA || path.join(os.homedir(), 'AppData', 'Local');
|
|
18
17
|
try {
|
|
19
18
|
var packagesDir = path.join(localAppData, 'Packages');
|
|
@@ -26,6 +25,9 @@ function findConfigPath() {
|
|
|
26
25
|
}
|
|
27
26
|
}
|
|
28
27
|
} catch(e) {}
|
|
28
|
+
// Standard path as fallback
|
|
29
|
+
var appdata = process.env.APPDATA || path.join(os.homedir(), 'AppData', 'Roaming');
|
|
30
|
+
candidates.push(path.join(appdata, 'Claude', 'claude_desktop_config.json'));
|
|
29
31
|
} else {
|
|
30
32
|
candidates.push(path.join(os.homedir(), '.config', 'Claude', 'claude_desktop_config.json'));
|
|
31
33
|
}
|