z-zero-mcp-server 1.1.0 → 1.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/README.md +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +212 -271
- package/dist/lib/extract-total-price.js +3 -1
- package/dist/lib/key-store.js +2 -2
- package/dist/lib/web3-detector.d.ts +2 -3
- package/dist/lib/web3-detector.js +28 -53
- package/dist/playwright_bridge.d.ts +2 -2
- package/dist/playwright_bridge.js +286 -92
- package/dist/types.d.ts +13 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +6 -0
- package/dist/wdk_backend.js +33 -29
- package/package.json +1 -1
- package/dist/api_backend.d.ts +0 -9
- package/dist/api_backend.js +0 -159
package/README.md
CHANGED
|
@@ -52,6 +52,9 @@ Get your Passport Key at: **[clawcard.store/dashboard/agents](https://www.clawca
|
|
|
52
52
|
| `execute_payment` | Auto-fill checkout form and execute payment |
|
|
53
53
|
| `cancel_payment_token` | Cancel unused token, refund to wallet |
|
|
54
54
|
| `request_human_approval` | Pause and ask human for approval |
|
|
55
|
+
| `set_api_key` | **(Hot-Swap)** Update the Passport Key *without restarting Claude* |
|
|
56
|
+
| `show_api_key_status` | Check if a Passport Key is currently loaded |
|
|
57
|
+
| `check_for_updates` | **(Maintenance)** Check if a new MCP version is available |
|
|
55
58
|
|
|
56
59
|
---
|
|
57
60
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export {};
|
|
2
|
+
export { CURRENT_MCP_VERSION } from "./version.js";
|