auditor-mcp 0.1.0 → 0.1.2
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 +3 -0
- package/package.json +12 -4
package/dist/index.js
CHANGED
|
@@ -294,7 +294,9 @@ ${rawBody}` }],
|
|
|
294
294
|
text: JSON.stringify(
|
|
295
295
|
{
|
|
296
296
|
file: file_path,
|
|
297
|
+
protocol: "x402 / Stellar Testnet",
|
|
297
298
|
walletAddress: signer.address,
|
|
299
|
+
stellarTxUrl: report?.stellarTxUrl ?? null,
|
|
298
300
|
model: report?.model,
|
|
299
301
|
summary: summary || "No vulnerabilities found",
|
|
300
302
|
findings
|
|
@@ -393,6 +395,7 @@ ${rawBody}` }],
|
|
|
393
395
|
file: file_path,
|
|
394
396
|
protocol: "Stripe MPP / Stellar Testnet",
|
|
395
397
|
walletAddress: signer.address,
|
|
398
|
+
stellarTxUrl: report?.stellarTxUrl ?? null,
|
|
396
399
|
model: report?.model,
|
|
397
400
|
summary: summary || "No vulnerabilities found",
|
|
398
401
|
findings
|
package/package.json
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auditor-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP server that audits Soroban smart contracts via autonomous x402 / Stripe MPP payments on Stellar Testnet",
|
|
6
|
-
"keywords": [
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"soroban",
|
|
9
|
+
"stellar",
|
|
10
|
+
"x402",
|
|
11
|
+
"security",
|
|
12
|
+
"audit",
|
|
13
|
+
"smart-contract"
|
|
14
|
+
],
|
|
7
15
|
"author": "xaviersharwin10",
|
|
8
16
|
"license": "MIT",
|
|
9
17
|
"homepage": "https://github.com/xaviersharwin10/soroban_node_0",
|
|
10
18
|
"repository": {
|
|
11
19
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/xaviersharwin10/soroban_node_0.git"
|
|
20
|
+
"url": "git+https://github.com/xaviersharwin10/soroban_node_0.git"
|
|
13
21
|
},
|
|
14
22
|
"bin": {
|
|
15
|
-
"auditor-mcp": "
|
|
23
|
+
"auditor-mcp": "dist/index.js"
|
|
16
24
|
},
|
|
17
25
|
"files": [
|
|
18
26
|
"dist"
|