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.
- package/package.json +1 -1
- package/src/index.js +6 -6
package/package.json
CHANGED
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')}]
|
|
72
|
-
`
|
|
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
|
-
`
|
|
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')}]
|
|
205
|
-
`
|
|
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.
|
|
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;
|