@quackai/q402-mcp 0.4.1 → 0.4.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 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -169,6 +169,7 @@ Combined with the `confirm: true` argument the tool requires, this means the mod
|
|
|
169
169
|
| Stable | 988 | USDT0 (USDC and USDT both alias) | Gas paid in USDT0. |
|
|
170
170
|
| Mantle | 5000 | USDC, USDT0 | LayerZero OFT USDT0 since 2025-11-27. |
|
|
171
171
|
| Injective EVM | 1776 | USDT only | Native USDC via Circle CCTP announced for Q2 2026. |
|
|
172
|
+
| Monad | 143 | USDC, USDT0 | Native Circle USDC (CCTP V2) + USDT0 (LayerZero OFT). |
|
|
172
173
|
|
|
173
174
|
---
|
|
174
175
|
|
|
@@ -176,7 +177,7 @@ Combined with the `confirm: true` argument the tool requires, this means the mod
|
|
|
176
177
|
|
|
177
178
|
x402 standardised "402 Payment Required" semantics for AI agents but the official Coinbase facilitator only covers a few chains and assumes ERC-3009 token support — which excludes BNB USDT, Mantle USDT0, Injective USDT, and the chains where most stablecoin volume actually lives.
|
|
178
179
|
|
|
179
|
-
Q402 implements the same payer experience (single signature, $0 gas, instant settlement) on all
|
|
180
|
+
Q402 implements the same payer experience (single signature, $0 gas, instant settlement) on all 8 of those chains using EIP-7702 delegated execution, which works with any ERC-20. This MCP server makes that infrastructure addressable from Claude itself.
|
|
180
181
|
|
|
181
182
|
If you want to dig into how the wire protocol differs from x402, see [Q402 docs](https://q402.quackai.ai/docs).
|
|
182
183
|
|
package/dist/index.js
CHANGED
|
@@ -1120,7 +1120,7 @@ var RECEIPT_TOOL = {
|
|
|
1120
1120
|
|
|
1121
1121
|
// src/index.ts
|
|
1122
1122
|
var PACKAGE_NAME = "@quackai/q402-mcp";
|
|
1123
|
-
var PACKAGE_VERSION = "0.4.
|
|
1123
|
+
var PACKAGE_VERSION = "0.4.2";
|
|
1124
1124
|
function jsonText(value) {
|
|
1125
1125
|
return { type: "text", text: JSON.stringify(value, null, 2) };
|
|
1126
1126
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "MCP server for Q402 — gasless USDC, USDT, and RLUSD payments across 8 EVM chains, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
|
|
5
5
|
"mcpName": "io.github.bitgett/q402-mcp",
|
|
6
6
|
"keywords": [
|