auditor-mcp 0.1.4 → 0.1.5
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -310,7 +310,8 @@ ${rawBody}` }],
|
|
|
310
310
|
stellarTxUrl,
|
|
311
311
|
model: report?.model,
|
|
312
312
|
summary: summary || "No vulnerabilities found",
|
|
313
|
-
findings
|
|
313
|
+
findings,
|
|
314
|
+
reasoning: report?.reasoning ?? null
|
|
314
315
|
},
|
|
315
316
|
null,
|
|
316
317
|
2
|
|
@@ -421,7 +422,8 @@ ${rawBody}` }],
|
|
|
421
422
|
stellarTxUrl: mppStellarTxUrl,
|
|
422
423
|
model: report?.model,
|
|
423
424
|
summary: summary || "No vulnerabilities found",
|
|
424
|
-
findings
|
|
425
|
+
findings,
|
|
426
|
+
reasoning: report?.reasoning ?? null
|
|
425
427
|
},
|
|
426
428
|
null,
|
|
427
429
|
2
|