cryptoiz-mcp 4.4.0 → 4.5.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cryptoiz-mcp",
3
- "version": "4.4.0",
3
+ "version": "4.5.0",
4
4
  "description": "CryptoIZ MCP Server — Solana DEX signals with x402 micropayments. Pay $0.01 USDC per call.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -380,10 +380,10 @@ function formatStatus() {
380
380
  // TOOL DEFINITIONS
381
381
  // ══════════════════════════════════════════════════════════════════
382
382
  const TOOLS = [
383
- { name: 'get_alpha_scanner', description: 'CryptoIZ Alpha Scanner — Solana smart money signals in markdown table format. Shows contract address, Jupiter trade link, alpha score, class, phase, whale/dolphin signals, sub-scores, risk flags, MC, price. $0.01 USDC/call.', inputSchema: { type: 'object', properties: { min_score: { type: 'number' }, entry_class: { type: 'string', enum: ['ALPHA_EARLY','ALPHA_BUILDING','WATCHLIST_ONLY'] } }, required: [] } },
384
- { name: 'get_divergence', description: 'CryptoIZ Divergence Scanner — 3 types in table format: HIDDEN_ACCUMULATION, BREAKOUT_ACCUMULATION, CLASSIC_DIVERGENCE. Shows CA, Jupiter link, score, confidence, whale holders now vs prev. $0.01 USDC/call.', inputSchema: { type: 'object', properties: { timeframe: { type: 'string', enum: ['4h','1d'] }, limit: { type: 'number' } }, required: [] } },
385
- { name: 'get_accumulation', description: 'CryptoIZ Accumulation Dashboard — 4-dimension scoring table. Shows CA, Jupiter link, composite + 4 sub-scores (structure/accdist/holder/market), MC, price. $0.01 USDC/call.', inputSchema: { type: 'object', properties: { min_composite: { type: 'number' } }, required: [] } },
386
- { name: 'get_btc_regime', description: 'CryptoIZ BTC Regime Monitor — BTC macro in table format. Shows price, score, Fear&Greed, OI regime, funding, futures signal, RSI/EMA/MACD 1H, altcoin recommendation. $0.01 USDC/call.', inputSchema: { type: 'object', properties: {}, required: [] } },
383
+ { name: 'get_alpha_scanner', description: 'CryptoIZ Alpha Scanner — Top 20 Solana smart money signals. Returns contract address, DexScreener chart link, alpha score, signal class, phase, whale/dolphin delta, sub-scores, risk flags, MC & price. Cost: $0.05 USDC/call.', inputSchema: { type: 'object', properties: { min_score: { type: 'number' }, entry_class: { type: 'string', enum: ['ALPHA_EARLY','ALPHA_BUILDING','WATCHLIST_ONLY'] } }, required: [] } },
384
+ { name: 'get_divergence', description: 'CryptoIZ Divergence Scanner — 3 signal types: HIDDEN_ACCUMULATION, BREAKOUT_ACCUMULATION, CLASSIC_DIVERGENCE. Returns CA, DexScreener chart link, score, confidence, whale holders now vs prev, dolphin delta. Cost: $0.02 USDC/call.', inputSchema: { type: 'object', properties: { timeframe: { type: 'string', enum: ['4h','1d'] }, limit: { type: 'number' } }, required: [] } },
385
+ { name: 'get_accumulation', description: 'CryptoIZ Accumulation Dashboard — 4-dimension scoring (Structure/AccDist/Holder/Market). Returns CA, DexScreener chart link, composite score + 4 sub-scores, MC, price, strength label. Cost: $0.02 USDC/call.', inputSchema: { type: 'object', properties: { min_composite: { type: 'number' } }, required: [] } },
386
+ { name: 'get_btc_regime', description: 'CryptoIZ BTC Regime Monitor — Bitcoin macro context for altcoin trading. Returns regime (Bull/Bear/Neutral), price, score/10, Fear&Greed index, OI regime, funding rate, RSI/EMA/MACD (1H), altcoin recommendation. Cost: $0.01 USDC/call.', inputSchema: { type: 'object', properties: {}, required: [] } },
387
387
  { name: 'get_token_ca', description: 'FREE: Get exact contract address for a specific token. Includes Jupiter and Raydium trade links. Use this to avoid buying wrong token (many fake tokens share same names). No USDC payment required.', inputSchema: { type: 'object', properties: { token_name: { type: 'string', description: 'Token name to look up, e.g. "Aliens" or "PENGUIN"' } }, required: ['token_name'] } },
388
388
  { name: 'get_status', description: 'CryptoIZ MCP server status, all available tools, and subscription plans. Platform: https://cryptoiz.org', inputSchema: { type: 'object', properties: {}, required: [] } },
389
389
  ];
@@ -391,7 +391,7 @@ const TOOLS = [
391
391
  // ══════════════════════════════════════════════════════════════════
392
392
  // SERVER
393
393
  // ══════════════════════════════════════════════════════════════════
394
- const server = new Server({ name: 'cryptoiz-mcp', version: '4.4.0' }, { capabilities: { tools: {} } });
394
+ const server = new Server({ name: 'cryptoiz-mcp', version: '4.5.0' }, { capabilities: { tools: {} } });
395
395
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
396
396
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
397
397
  const { name, arguments: args } = request.params;