cryptoiz-mcp 4.15.12 → 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 (3) hide show
  1. package/index.js +1 -1
  2. package/package.json +11 -2
  3. package/setup.js +1 -1
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';
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.12",
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.12';
7
+ var VERSION = 'v4.15.13';
8
8
  function print(msg) { process.stdout.write(msg + '\n'); }
9
9
 
10
10
  function findConfigPath() {