@quackai/q402-mcp 0.3.2 → 0.3.4

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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -518,7 +518,7 @@ function describeSandboxReason() {
518
518
  }
519
519
  var PAY_TOOL = {
520
520
  name: "q402_pay",
521
- description: "Send a gasless USDC or USDT payment via Q402. SANDBOX BY DEFAULT \u2014 no funds move unless Q402_API_KEY (live tier), Q402_PRIVATE_KEY, and Q402_ENABLE_REAL_PAYMENTS=1 are all set. The recipient receives the full amount; the sender pays $0 in gas. ALWAYS get explicit user confirmation of the exact recipient address, amount, chain, and token in conversation immediately before calling this tool.",
521
+ description: "Send a gasless USDC, USDT, or RLUSD payment via Q402. RLUSD (Ripple USD, NY DFS regulated, decimals 18) is supported on Ethereum mainnet only; USDC/USDT span all seven Q402 chains (Injective is USDT-only). SANDBOX BY DEFAULT \u2014 no funds move unless Q402_API_KEY (live tier), Q402_PRIVATE_KEY, and Q402_ENABLE_REAL_PAYMENTS=1 are all set. The recipient receives the full amount; the sender pays $0 in gas. ALWAYS get explicit user confirmation of the exact recipient address, amount, chain, and token in conversation immediately before calling this tool.",
522
522
  inputSchema: {
523
523
  type: "object",
524
524
  properties: {
@@ -755,7 +755,7 @@ var RECEIPT_TOOL = {
755
755
 
756
756
  // src/index.ts
757
757
  var PACKAGE_NAME = "@quackai/q402-mcp";
758
- var PACKAGE_VERSION = "0.3.2";
758
+ var PACKAGE_VERSION = "0.3.4";
759
759
  function jsonText(value) {
760
760
  return { type: "text", text: JSON.stringify(value, null, 2) };
761
761
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quackai/q402-mcp",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "MCP server for Q402 — gasless USDC, USDT, and RLUSD payments across 7 EVM chains, callable directly from Claude Desktop and any other Model Context Protocol client.",
5
5
  "mcpName": "io.github.bitgett/q402-mcp",
6
6
  "keywords": [
@@ -39,7 +39,7 @@
39
39
  "start": "node dist/index.js"
40
40
  },
41
41
  "dependencies": {
42
- "@modelcontextprotocol/sdk": "^1.0.4",
42
+ "@modelcontextprotocol/sdk": "^1.29.0",
43
43
  "ethers": "^6.16.0",
44
44
  "zod": "^3.23.8"
45
45
  },