cryptoiz-mcp 3.0.0 → 3.0.1

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 +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cryptoiz-mcp",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
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,8 +68,8 @@ function formatAlpha(data) {
68
68
  `═══════════════════════════════════════════════════════════`,
69
69
  ...s.map((t, i) => [
70
70
  ``,
71
- `[${String(i+1).padStart(2,'0')}] ${t.name}`,
72
- ` CONTRACT_ADDRESS : ${t.contract_address}`,
71
+ `[${String(i+1).padStart(2,'0')}] \${t.name}`,
72
+ ` CA : \${t.contract_address}`,
73
73
  ` ALPHA_SCORE : ${t.alpha_score} / 100`,
74
74
  ` SIGNAL_CLASS : ${t.signal_class}`,
75
75
  ` CURRENT_PHASE : ${t.phase}`,
@@ -141,7 +141,7 @@ function formatDivergence(data) {
141
141
  lines.push([
142
142
  ``,
143
143
  ` [${String(i+1).padStart(2,'0')}] ${s.name}`,
144
- ` CONTRACT_ADDRESS : ${s.contract_address}`,
144
+ ` CA: ${s.contract_address}`,
145
145
  ` DIVERGENCE_TYPE : ${s.divergence_type}`,
146
146
  ` DIVERGENCE_SCORE : ${s.divergence_score}`,
147
147
  ` CONFIDENCE : ${s.confidence_pct}%`,
@@ -201,8 +201,8 @@ function formatAccumulation(data) {
201
201
  `═══════════════════════════════════════════════════════════`,
202
202
  ...tokens.map((t, i) => [
203
203
  ``,
204
- `[${String(i+1).padStart(2,'0')}] ${t.name}`,
205
- ` CONTRACT_ADDRESS : ${t.contract_address}`,
204
+ `[${String(i+1).padStart(2,'0')}] \${t.name}`,
205
+ ` CA : \${t.contract_address}`,
206
206
  ` ACCUMULATION : ${t.accumulation_strength}`,
207
207
  ` ACCDIST_STATUS : ${t.accdist_status}`,
208
208
  ``,
@@ -357,7 +357,7 @@ const TOOLS = [
357
357
  { 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: [] } },
358
358
  ];
359
359
 
360
- const server = new Server({ name: 'cryptoiz-mcp', version: '3.0.0' }, { capabilities: { tools: {} } });
360
+ const server = new Server({ name: 'cryptoiz-mcp', version: '3.0.1' }, { capabilities: { tools: {} } });
361
361
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
362
362
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
363
363
  const { name, arguments: args } = request.params;