@quackai/q402-mcp 0.8.34 → 0.8.35
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 +19 -0
- package/dist/index.js +5 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -27,8 +27,27 @@ Quote → route → (optional) settle stablecoin payments across 10 EVM chains,
|
|
|
27
27
|
| **OpenAI Codex CLI** | `codex mcp add q402 -- npx -y @quackai/q402-mcp` (Windows fallback: see below) |
|
|
28
28
|
| **Cursor** | Add to `~/.cursor/mcp.json`: `{ "mcpServers": { "q402": { "command": "npx", "args": ["-y", "@quackai/q402-mcp"] } } }` |
|
|
29
29
|
| **Cline** | Cline → Settings → MCP Servers → Edit JSON. Same shape as Cursor. |
|
|
30
|
+
| **GitHub Copilot (VS Code)** | Add to `.vscode/mcp.json` — root key is `servers`, **not** `mcpServers`: `{ "servers": { "q402": { "command": "npx", "args": ["-y", "@quackai/q402-mcp"] } } }`. Reload VS Code, then enable q402 in the Copilot Chat tools picker. |
|
|
31
|
+
| **Hermes Agent (Nous Research)** | YAML, not JSON. Add under `mcp_servers` in `~/.hermes/config.yaml` (see below), then run `/reload-mcp`. |
|
|
30
32
|
| **Any other stdio MCP client** | Point it at `npx -y @quackai/q402-mcp`. No client-specific code. |
|
|
31
33
|
|
|
34
|
+
<details>
|
|
35
|
+
<summary>Hermes Agent — YAML config (<code>~/.hermes/config.yaml</code>)</summary>
|
|
36
|
+
|
|
37
|
+
Hermes reads MCP servers from `~/.hermes/config.yaml` under `mcp_servers` (YAML, not JSON):
|
|
38
|
+
|
|
39
|
+
```yaml
|
|
40
|
+
mcp_servers:
|
|
41
|
+
q402:
|
|
42
|
+
command: "npx"
|
|
43
|
+
args: ["-y", "@quackai/q402-mcp"]
|
|
44
|
+
enabled: true
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
After editing, run `/reload-mcp` in Hermes to load the tools. Or use the CLI: `hermes mcp add q402 --command npx --args -y @quackai/q402-mcp`.
|
|
48
|
+
|
|
49
|
+
</details>
|
|
50
|
+
|
|
32
51
|
> Claude **Code** (the CLI, `claude` binary) and Claude **Desktop** (the macOS / Windows app) are different products. The `claude mcp add` command only exists in the CLI; the Desktop app needs the JSON config above.
|
|
33
52
|
|
|
34
53
|
Secrets are NOT in this config. The server reads them from `~/.q402/mcp.env` (same pattern as AWS / Stripe / gh CLIs).
|
package/dist/index.js
CHANGED
|
@@ -211,7 +211,7 @@ var isValidPrivateKey = (s) => typeof s === "string" && PRIVATE_KEY_RE.test(s);
|
|
|
211
211
|
// package.json
|
|
212
212
|
var package_default = {
|
|
213
213
|
name: "@quackai/q402-mcp",
|
|
214
|
-
version: "0.8.
|
|
214
|
+
version: "0.8.35",
|
|
215
215
|
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.",
|
|
216
216
|
mcpName: "io.github.bitgett/q402-mcp",
|
|
217
217
|
keywords: [
|
|
@@ -222,7 +222,11 @@ var package_default = {
|
|
|
222
222
|
"claude-code",
|
|
223
223
|
"codex",
|
|
224
224
|
"openai-codex",
|
|
225
|
+
"cursor",
|
|
225
226
|
"cline",
|
|
227
|
+
"copilot",
|
|
228
|
+
"github-copilot",
|
|
229
|
+
"hermes",
|
|
226
230
|
"q402",
|
|
227
231
|
"x402",
|
|
228
232
|
"stablecoin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.35",
|
|
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": [
|
|
@@ -11,7 +11,11 @@
|
|
|
11
11
|
"claude-code",
|
|
12
12
|
"codex",
|
|
13
13
|
"openai-codex",
|
|
14
|
+
"cursor",
|
|
14
15
|
"cline",
|
|
16
|
+
"copilot",
|
|
17
|
+
"github-copilot",
|
|
18
|
+
"hermes",
|
|
15
19
|
"q402",
|
|
16
20
|
"x402",
|
|
17
21
|
"stablecoin",
|