@quackai/q402-mcp 0.8.16 → 0.8.17
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 +79 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -209,9 +209,86 @@ function isLiveModeFor(resolved) {
|
|
|
209
209
|
}
|
|
210
210
|
var isValidPrivateKey = (s) => typeof s === "string" && PRIVATE_KEY_RE.test(s);
|
|
211
211
|
|
|
212
|
+
// package.json
|
|
213
|
+
var package_default = {
|
|
214
|
+
name: "@quackai/q402-mcp",
|
|
215
|
+
version: "0.8.17",
|
|
216
|
+
description: "MCP server for Q402 \u2014 gasless USDC/USDT/RLUSD payments on 10 EVM chains + Chainlink CCIP USDC bridge on the eth/avax/arbitrum triangle, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
|
|
217
|
+
mcpName: "io.github.bitgett/q402-mcp",
|
|
218
|
+
keywords: [
|
|
219
|
+
"mcp",
|
|
220
|
+
"model-context-protocol",
|
|
221
|
+
"claude",
|
|
222
|
+
"claude-desktop",
|
|
223
|
+
"claude-code",
|
|
224
|
+
"codex",
|
|
225
|
+
"openai-codex",
|
|
226
|
+
"cline",
|
|
227
|
+
"q402",
|
|
228
|
+
"x402",
|
|
229
|
+
"stablecoin",
|
|
230
|
+
"usdc",
|
|
231
|
+
"usdt",
|
|
232
|
+
"rlusd",
|
|
233
|
+
"ripple",
|
|
234
|
+
"gasless",
|
|
235
|
+
"eip-7702",
|
|
236
|
+
"payments",
|
|
237
|
+
"ai-agents"
|
|
238
|
+
],
|
|
239
|
+
type: "module",
|
|
240
|
+
main: "dist/index.js",
|
|
241
|
+
bin: {
|
|
242
|
+
"q402-mcp": "dist/index.js"
|
|
243
|
+
},
|
|
244
|
+
files: [
|
|
245
|
+
"dist",
|
|
246
|
+
"README.md",
|
|
247
|
+
"LICENSE"
|
|
248
|
+
],
|
|
249
|
+
engines: {
|
|
250
|
+
node: ">=18.18"
|
|
251
|
+
},
|
|
252
|
+
scripts: {
|
|
253
|
+
build: "tsup",
|
|
254
|
+
dev: "tsup --watch",
|
|
255
|
+
lint: "tsc --noEmit",
|
|
256
|
+
prepublishOnly: "npm run lint && npm run build",
|
|
257
|
+
start: "node dist/index.js"
|
|
258
|
+
},
|
|
259
|
+
dependencies: {
|
|
260
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
261
|
+
ethers: "^6.16.0",
|
|
262
|
+
zod: "^3.23.8"
|
|
263
|
+
},
|
|
264
|
+
devDependencies: {
|
|
265
|
+
"@types/node": "^20.11.0",
|
|
266
|
+
tsup: "^8.3.0",
|
|
267
|
+
typescript: "^5.5.0"
|
|
268
|
+
},
|
|
269
|
+
repository: {
|
|
270
|
+
type: "git",
|
|
271
|
+
url: "git+https://github.com/bitgett/q402-mcp.git"
|
|
272
|
+
},
|
|
273
|
+
homepage: "https://q402.quackai.ai/claude",
|
|
274
|
+
bugs: {
|
|
275
|
+
url: "https://github.com/bitgett/q402-mcp/issues"
|
|
276
|
+
},
|
|
277
|
+
license: "Apache-2.0",
|
|
278
|
+
author: "David Lee <davidlee@quackai.ai>",
|
|
279
|
+
publishConfig: {
|
|
280
|
+
access: "public"
|
|
281
|
+
},
|
|
282
|
+
overrides: {
|
|
283
|
+
ws: "^8.20.1",
|
|
284
|
+
qs: "^6.15.2",
|
|
285
|
+
hono: "^4.12.21"
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
|
|
212
289
|
// src/version.ts
|
|
213
|
-
var PACKAGE_NAME =
|
|
214
|
-
var PACKAGE_VERSION =
|
|
290
|
+
var PACKAGE_NAME = package_default.name;
|
|
291
|
+
var PACKAGE_VERSION = package_default.version;
|
|
215
292
|
|
|
216
293
|
// src/tools/quote.ts
|
|
217
294
|
import { z } from "zod";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.17",
|
|
4
4
|
"description": "MCP server for Q402 — gasless USDC/USDT/RLUSD payments on 10 EVM chains + Chainlink CCIP USDC bridge on the eth/avax/arbitrum triangle, 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": [
|