cryptoiz-mcp 3.0.2 → 3.1.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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cryptoiz-mcp",
3
- "version": "3.0.2",
3
+ "version": "3.1.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
@@ -68,7 +68,7 @@ function formatAlpha(data) {
68
68
  `═══════════════════════════════════════════════════════════`,
69
69
  ...s.map((t, i) => [
70
70
  ``,
71
- `[${String(i+1).padStart(2,'0')}] \${t.name} | CA: \${t.contract_address}`,
71
+ `[${String(i+1).padStart(2,'0')}] ${t.name} | CA: ${t.contract_address}`,
72
72
  ` ALPHA_SCORE : ${t.alpha_score} / 100`,
73
73
  ` SIGNAL_CLASS : ${t.signal_class}`,
74
74
  ` CURRENT_PHASE : ${t.phase}`,
@@ -199,7 +199,7 @@ function formatAccumulation(data) {
199
199
  `═══════════════════════════════════════════════════════════`,
200
200
  ...tokens.map((t, i) => [
201
201
  ``,
202
- `[${String(i+1).padStart(2,'0')}] \${t.name} | CA: \${t.contract_address}`,
202
+ `[${String(i+1).padStart(2,'0')}] ${t.name} | CA: ${t.contract_address}`,
203
203
  ` ACCUMULATION : ${t.accumulation_strength}`,
204
204
  ` ACCDIST_STATUS : ${t.accdist_status}`,
205
205
  ``,
@@ -354,7 +354,7 @@ const TOOLS = [
354
354
  { name: 'get_status', description: 'Check CryptoIZ MCP server status, payment setup, and full list of available tools with data descriptions. Platform: cryptoiz.org', inputSchema: { type: 'object', properties: {}, required: [] } },
355
355
  ];
356
356
 
357
- const server = new Server({ name: 'cryptoiz-mcp', version: '3.0.2' }, { capabilities: { tools: {} } });
357
+ const server = new Server({ name: 'cryptoiz-mcp', version: '3.1.0' }, { capabilities: { tools: {} } });
358
358
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
359
359
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
360
360
  const { name, arguments: args } = request.params;