@proofofprotocol/inscribe-mcp 0.3.6 → 0.3.7

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/server.js +12 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proofofprotocol/inscribe-mcp",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Verifiable inscription for AI agents - inscribe anything to blockchain with Hedera HCS",
5
5
  "type": "module",
6
6
  "main": "src/server.js",
package/src/server.js CHANGED
@@ -82,7 +82,17 @@ function debugLog(phase, data = {}) {
82
82
  args: data.args,
83
83
  status: data.status,
84
84
  duration: data.duration,
85
- error: data.error
85
+ error: data.error,
86
+ // LAN analyzer style fields
87
+ method: data.method,
88
+ requestId: data.requestId,
89
+ argsKeys: data.argsKeys,
90
+ argsPreview: data.argsPreview,
91
+ action: data.action,
92
+ direction: data.direction,
93
+ resultPreview: data.resultPreview,
94
+ responseSize: data.responseSize,
95
+ errorType: data.errorType
86
96
  });
87
97
  }
88
98
 
@@ -264,7 +274,7 @@ async function main() {
264
274
  if (isDebugEnabled()) {
265
275
  console.error('Debug mode is currently ON (hot-reloadable)');
266
276
  debugLog('server_start', {
267
- version: '0.3.6',
277
+ version: '0.3.7',
268
278
  tools: allTools.map(t => t.name)
269
279
  });
270
280
  }