@quackai/q402-mcp 0.3.14 → 0.4.0

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +2 -2
  3. package/package.json +69 -69
package/README.md CHANGED
@@ -93,7 +93,7 @@ The server has no client-specific code. If your client speaks stdio MCP, point i
93
93
 
94
94
  ---
95
95
 
96
- > **🚧 Sprint window (BNB-focus, 2026-05-19 → 2026-06-30)** — `0.3.13` ships with the default `Q402_RELAY_BASE_URL` pointing at the sprint preview deploy. That's the deploy currently issuing trial keys and where the matching subscription records live. Once the sprint branch is merged into `main` and `q402.quackai.ai` serves the sprint code, the default will flip back to the canonical site in `0.4.0`. Set `Q402_RELAY_BASE_URL` explicitly in env if you want to override.
96
+ > `Q402_RELAY_BASE_URL` overrides the relay endpoint. Set it explicitly when running against a self-hosted Q402 deployment or a non-canonical environment.
97
97
 
98
98
  ---
99
99
 
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import {
10
10
 
11
11
  // src/config.ts
12
12
  import { isAddress } from "ethers";
13
- var DEFAULT_RELAY_BASE = "https://q402-institutional-git-feat-bnb-f-e317ee-bitgett-7677s-projects.vercel.app/api";
13
+ var DEFAULT_RELAY_BASE = "https://q402.quackai.ai/api";
14
14
  var DEFAULT_MAX_AMOUNT = 5;
15
15
  function classifyApiKey(k) {
16
16
  if (!k) return "missing";
@@ -1104,7 +1104,7 @@ var RECEIPT_TOOL = {
1104
1104
 
1105
1105
  // src/index.ts
1106
1106
  var PACKAGE_NAME = "@quackai/q402-mcp";
1107
- var PACKAGE_VERSION = "0.3.14";
1107
+ var PACKAGE_VERSION = "0.4.0";
1108
1108
  function jsonText(value) {
1109
1109
  return { type: "text", text: JSON.stringify(value, null, 2) };
1110
1110
  }
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
- {
2
- "name": "@quackai/q402-mcp",
3
- "version": "0.3.14",
4
- "description": "MCP server for Q402 — gasless USDC, USDT, and RLUSD payments across 7 EVM chains, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
5
- "mcpName": "io.github.bitgett/q402-mcp",
6
- "keywords": [
7
- "mcp",
8
- "model-context-protocol",
9
- "claude",
10
- "claude-desktop",
11
- "claude-code",
12
- "codex",
13
- "openai-codex",
14
- "cline",
15
- "q402",
16
- "x402",
17
- "stablecoin",
18
- "usdc",
19
- "usdt",
20
- "rlusd",
21
- "ripple",
22
- "gasless",
23
- "eip-7702",
24
- "payments",
25
- "ai-agents"
26
- ],
27
- "type": "module",
28
- "main": "dist/index.js",
29
- "bin": {
30
- "q402-mcp": "dist/index.js"
31
- },
32
- "files": [
33
- "dist",
34
- "README.md",
35
- "LICENSE"
36
- ],
37
- "engines": {
38
- "node": ">=18.18"
39
- },
40
- "scripts": {
41
- "build": "tsup",
42
- "dev": "tsup --watch",
43
- "prepublishOnly": "npm run build",
44
- "start": "node dist/index.js"
45
- },
46
- "dependencies": {
47
- "@modelcontextprotocol/sdk": "^1.29.0",
48
- "ethers": "^6.16.0",
49
- "zod": "^3.23.8"
50
- },
51
- "devDependencies": {
52
- "@types/node": "^20.11.0",
53
- "tsup": "^8.3.0",
54
- "typescript": "^5.5.0"
55
- },
56
- "repository": {
57
- "type": "git",
58
- "url": "git+https://github.com/bitgett/q402-mcp.git"
59
- },
60
- "homepage": "https://q402.quackai.ai/claude",
61
- "bugs": {
62
- "url": "https://github.com/bitgett/q402-mcp/issues"
63
- },
64
- "license": "Apache-2.0",
65
- "author": "David Lee <davidlee@quackai.ai>",
66
- "publishConfig": {
67
- "access": "public"
68
- }
69
- }
1
+ {
2
+ "name": "@quackai/q402-mcp",
3
+ "version": "0.4.0",
4
+ "description": "MCP server for Q402 — gasless USDC, USDT, and RLUSD payments across 7 EVM chains, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
5
+ "mcpName": "io.github.bitgett/q402-mcp",
6
+ "keywords": [
7
+ "mcp",
8
+ "model-context-protocol",
9
+ "claude",
10
+ "claude-desktop",
11
+ "claude-code",
12
+ "codex",
13
+ "openai-codex",
14
+ "cline",
15
+ "q402",
16
+ "x402",
17
+ "stablecoin",
18
+ "usdc",
19
+ "usdt",
20
+ "rlusd",
21
+ "ripple",
22
+ "gasless",
23
+ "eip-7702",
24
+ "payments",
25
+ "ai-agents"
26
+ ],
27
+ "type": "module",
28
+ "main": "dist/index.js",
29
+ "bin": {
30
+ "q402-mcp": "dist/index.js"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "engines": {
38
+ "node": ">=18.18"
39
+ },
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "dev": "tsup --watch",
43
+ "prepublishOnly": "npm run build",
44
+ "start": "node dist/index.js"
45
+ },
46
+ "dependencies": {
47
+ "@modelcontextprotocol/sdk": "^1.29.0",
48
+ "ethers": "^6.16.0",
49
+ "zod": "^3.23.8"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^20.11.0",
53
+ "tsup": "^8.3.0",
54
+ "typescript": "^5.5.0"
55
+ },
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/bitgett/q402-mcp.git"
59
+ },
60
+ "homepage": "https://q402.quackai.ai/claude",
61
+ "bugs": {
62
+ "url": "https://github.com/bitgett/q402-mcp/issues"
63
+ },
64
+ "license": "Apache-2.0",
65
+ "author": "David Lee <davidlee@quackai.ai>",
66
+ "publishConfig": {
67
+ "access": "public"
68
+ }
69
+ }