cryptoiz-mcp 4.15.14 → 4.16.0

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // CryptoIZ MCP Server v4.15.14
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
5
5
  // ZERO template literals — Windows PowerShell safe
@@ -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.15.14';
13
+ var VERSION = 'v4.16.0';
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 = {
@@ -20,6 +20,7 @@ var TOOL_ENDPOINTS = {
20
20
  get_whale_neutral: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-neutral',
21
21
  get_whale_distribution: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-distribution',
22
22
  get_btc_regime: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-btc-regime',
23
+ get_btc_futures_signal: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-btc-futures',
23
24
  // Backward compat: old names -> same proxy endpoints
24
25
  get_alpha_scanner: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-alpha-scanner',
25
26
  get_divergence: 'https://rehqwsypjnjirhuiapqh.supabase.co/functions/v1/mcp-divergence',
@@ -366,6 +367,11 @@ var TOOLS = [
366
367
  description: 'Get Bitcoin macro regime, fear/greed index, futures signals, and technicals (RSI, EMA, MACD). Cost: $0.01 USDC.',
367
368
  inputSchema: { type: 'object', properties: {}, required: [] },
368
369
  },
370
+ {
371
+ name: 'get_btc_futures_signal',
372
+ description: 'BTC futures scalping signal (35x leverage). Multi-timeframe: 4h regime filter (bull/bear) + 5m RSI entry trigger. Returns direction, entry, TP, SL, leverage recommendation, conviction score. Backtested 54% WR, PF 1.67, Sharpe 5.0 on 90d. Cost: $0.03 USDC.',
373
+ inputSchema: { type: 'object', properties: {}, required: [] },
374
+ },
369
375
  {
370
376
  name: 'get_token_ca',
371
377
  description: 'Look up a Solana token contract address by name. FREE - no payment required.',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cryptoiz-mcp",
3
- "version": "4.15.14",
3
+ "version": "4.16.0",
4
4
  "mcpName": "io.github.dadang11/cryptoiz",
5
5
  "description": "CryptoIZ MCP Server - Solana DEX whale intelligence via Claude Desktop with x402 USDC micropayments (V2 Dexter facilitator)",
6
6
  "main": "index.js",
package/server.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3
+ "name": "io.github.dadang11/cryptoiz",
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.",
5
+ "status": "active",
6
+ "repository": {
7
+ "url": "https://github.com/dadang11/cryptoiz-mcp",
8
+ "source": "github"
9
+ },
10
+ "version": "4.15.13",
11
+ "packages": [
12
+ {
13
+ "registry_type": "npm",
14
+ "registry_base_url": "https://registry.npmjs.org",
15
+ "identifier": "cryptoiz-mcp",
16
+ "version": "4.15.13",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "environment_variables": [
21
+ {
22
+ "name": "SVM_PRIVATE_KEY",
23
+ "description": "Your Solana wallet private key (base58) for x402 USDC payments",
24
+ "isRequired": true,
25
+ "isSecret": true
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ }
package/setup.js CHANGED
File without changes