chainhint-mcp 1.2.1 → 1.3.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/dist/index.js +10 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -264,6 +264,12 @@ server.tool("check_wallet_risk", "Fast risk check for a crypto wallet address ag
|
|
|
264
264
|
}
|
|
265
265
|
if (d.labels?.length)
|
|
266
266
|
lines.push(`**Labels:** ${[...new Set(d.labels)].join(", ")}`);
|
|
267
|
+
if (d.agent) {
|
|
268
|
+
// Registry fact (agent launchpad / factory / facilitator / wallet), not
|
|
269
|
+
// a behavioural classification — mirrors the API's honest wording.
|
|
270
|
+
const cap = d.agent.summary.charAt(0).toUpperCase() + d.agent.summary.slice(1);
|
|
271
|
+
lines.push(`🤖 **${cap}** — a registry fact, not a behavioural classification.`);
|
|
272
|
+
}
|
|
267
273
|
if (d.is_contract != null)
|
|
268
274
|
lines.push(`**Type:** ${d.is_contract ? "Smart Contract" : "EOA (wallet)"}`);
|
|
269
275
|
lines.push(`**In ChainHint DB:** ${d.found_in_db ? "yes" : "no"}${d.sources?.length ? ` (sources: ${d.sources.join(", ")})` : ""}`);
|
|
@@ -306,6 +312,10 @@ server.tool("lookup_address", "Detailed lookup of a blockchain address: entity a
|
|
|
306
312
|
else {
|
|
307
313
|
lines.push(`**Entity:** Unknown / unlabeled`);
|
|
308
314
|
}
|
|
315
|
+
if (d.agent) {
|
|
316
|
+
const cap = d.agent.summary.charAt(0).toUpperCase() + d.agent.summary.slice(1);
|
|
317
|
+
lines.push(`🤖 **${cap}** — a registry fact, not a behavioural classification.`);
|
|
318
|
+
}
|
|
309
319
|
if (d.labels?.length)
|
|
310
320
|
lines.push(`**Labels:** ${[...new Set(d.labels)].join(", ")}`);
|
|
311
321
|
if (d.risk) {
|