agentpay-mcp 4.1.7 → 4.1.10
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/README.md +17 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/session/types.d.ts +1 -1
- package/dist/session/types.d.ts.map +1 -1
- package/dist/tools/budget.d.ts +14 -0
- package/dist/tools/budget.d.ts.map +1 -1
- package/dist/tools/budget.js +45 -15
- package/dist/tools/budget.js.map +1 -1
- package/dist/tools/deploy.js.map +1 -1
- package/dist/tools/history.d.ts.map +1 -1
- package/dist/tools/history.js.map +1 -1
- package/dist/tools/payments.d.ts.map +1 -1
- package/dist/tools/payments.js.map +1 -1
- package/dist/tools/session.d.ts.map +1 -1
- package/dist/tools/session.js +12 -19
- package/dist/tools/session.js.map +1 -1
- package/dist/tools/x402.d.ts.map +1 -1
- package/dist/tools/x402.js +9 -12
- package/dist/tools/x402.js.map +1 -1
- package/dist/utils/hosted-proxy-verification.d.ts +48 -0
- package/dist/utils/hosted-proxy-verification.d.ts.map +1 -0
- package/dist/utils/hosted-proxy-verification.js +147 -0
- package/dist/utils/hosted-proxy-verification.js.map +1 -0
- package/dist/utils/paid-mcp-gateway-hardening.d.ts +51 -0
- package/dist/utils/paid-mcp-gateway-hardening.d.ts.map +1 -0
- package/dist/utils/paid-mcp-gateway-hardening.js +60 -0
- package/dist/utils/paid-mcp-gateway-hardening.js.map +1 -0
- package/dist/utils/paid-provider-health-proof.d.ts +294 -0
- package/dist/utils/paid-provider-health-proof.d.ts.map +1 -0
- package/dist/utils/paid-provider-health-proof.js +191 -0
- package/dist/utils/paid-provider-health-proof.js.map +1 -0
- package/dist/utils/x402-buyer-flow.d.ts +81 -0
- package/dist/utils/x402-buyer-flow.d.ts.map +1 -0
- package/dist/utils/x402-buyer-flow.js +188 -0
- package/dist/utils/x402-buyer-flow.js.map +1 -0
- package/dist/utils/x402-v211-compatibility.d.ts +29 -0
- package/dist/utils/x402-v211-compatibility.d.ts.map +1 -0
- package/dist/utils/x402-v211-compatibility.js +71 -0
- package/dist/utils/x402-v211-compatibility.js.map +1 -0
- package/docs/agentpay-buyer-flow-parity.md +149 -0
- package/docs/dependency-pin-policy.md +53 -0
- package/docs/fixtures/paid-provider-health-proof-voidly-2026-05-02.json +104 -0
- package/docs/hosted-x402-proxy-verification.md +79 -0
- package/docs/mcp-registry-listing-proof.md +62 -0
- package/docs/mcp-registry-listing.json +40 -0
- package/docs/paid-mcp-gateway-hardening.md +121 -0
- package/docs/paid-provider-health-proof.md +71 -0
- package/docs/paid-provider-health-proof.schema.json +89 -0
- package/docs/settlegrid-paid-mcp-discovery-response.md +61 -0
- package/docs/x402-ecosystem-submission.md +22 -0
- package/docs/x402-native-vs-stripe-proxy.md +1 -1
- package/docs/x402-v211-paid-mcp-compatibility.md +75 -0
- package/llms.txt +21 -0
- package/package.json +10 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentpay-mcp",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.10",
|
|
4
4
|
"mcpName": "io.github.up2itnow0822/agentpay",
|
|
5
5
|
"description": "AgentPay MCP Server - Non-custodial x402 payment layer for AI agents. Multi-chain wallets, spending limits, and machine-to-machine payments. Patent Pending.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,10 +14,13 @@
|
|
|
14
14
|
"claude_desktop_config.json",
|
|
15
15
|
".env.example",
|
|
16
16
|
"docs/*.md",
|
|
17
|
+
"docs/*.json",
|
|
18
|
+
"docs/fixtures/*.json",
|
|
17
19
|
"Dockerfile",
|
|
18
20
|
"smithery.yaml",
|
|
19
21
|
"glama.json",
|
|
20
|
-
"docs/directory-introspection-readiness.md"
|
|
22
|
+
"docs/directory-introspection-readiness.md",
|
|
23
|
+
"llms.txt"
|
|
21
24
|
],
|
|
22
25
|
"scripts": {
|
|
23
26
|
"build": "tsc",
|
|
@@ -29,7 +32,9 @@
|
|
|
29
32
|
"test:coverage": "vitest run --coverage",
|
|
30
33
|
"typecheck": "tsc --noEmit",
|
|
31
34
|
"lint": "eslint src/ tests/ --config eslint.config.mjs",
|
|
32
|
-
"
|
|
35
|
+
"security": "node scripts/security-check.mjs",
|
|
36
|
+
"prepublishOnly": "npm run clean && npm run build && npm run typecheck && npm run smoke:clean-install",
|
|
37
|
+
"smoke:clean-install": "node scripts/clean-install-x402-smoke.mjs"
|
|
33
38
|
},
|
|
34
39
|
"keywords": [
|
|
35
40
|
"mcp",
|
|
@@ -59,11 +64,11 @@
|
|
|
59
64
|
"dependencies": {
|
|
60
65
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
61
66
|
"agentwallet-sdk": "^6.2.1",
|
|
62
|
-
"viem": "
|
|
67
|
+
"viem": "2.48.7",
|
|
63
68
|
"zod": "^3.22.4"
|
|
64
69
|
},
|
|
65
70
|
"overrides": {
|
|
66
|
-
"viem": "
|
|
71
|
+
"viem": "2.48.7"
|
|
67
72
|
},
|
|
68
73
|
"devDependencies": {
|
|
69
74
|
"@types/node": "^20.11.0",
|