@quackai/q402-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/README.md +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Claude can now reason about stablecoin payments end to end — quote a transfer
|
|
|
12
12
|
## Quick start (Claude Desktop)
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
claude mcp add q402 -- npx @quackai/q402-mcp
|
|
15
|
+
claude mcp add q402 -- npx -y @quackai/q402-mcp
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Or, if you prefer editing the config file directly, add this entry to your `claude_desktop_config.json`:
|
|
@@ -81,7 +81,7 @@ Combined with the `confirm: true` argument the tool requires, this means the mod
|
|
|
81
81
|
|
|
82
82
|
| Env var | Required for | Notes |
|
|
83
83
|
|---|---|---|
|
|
84
|
-
| `Q402_API_KEY` | balance
|
|
84
|
+
| `Q402_API_KEY` | balance, live-pay | Issue at https://q402.quackai.ai/dashboard. `q402_test_*` keys keep sandbox on. |
|
|
85
85
|
| `Q402_PRIVATE_KEY` | live-pay | Signer for the payer EOA. **Never share. Never paste in chat.** |
|
|
86
86
|
| `Q402_ENABLE_REAL_PAYMENTS` | live-pay | Set to `1` to opt in. Any other value (or unset) → sandbox. |
|
|
87
87
|
| `Q402_MAX_AMOUNT_PER_CALL` | optional | USD-equivalent cap. Defaults to `5`. |
|
package/dist/index.js
CHANGED
|
@@ -571,7 +571,7 @@ var BALANCE_TOOL = {
|
|
|
571
571
|
|
|
572
572
|
// src/index.ts
|
|
573
573
|
var PACKAGE_NAME = "@quackai/q402-mcp";
|
|
574
|
-
var PACKAGE_VERSION = "0.1.
|
|
574
|
+
var PACKAGE_VERSION = "0.1.2";
|
|
575
575
|
function jsonText(value) {
|
|
576
576
|
return { type: "text", text: JSON.stringify(value, null, 2) };
|
|
577
577
|
}
|
package/package.json
CHANGED