auditor-mcp 0.1.0 → 0.1.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/dist/index.js +2 -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
|
package/package.json
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auditor-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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"
|