@quackai/q402-mcp 0.8.4 → 0.8.5
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 +5 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -211,7 +211,7 @@ var isValidPrivateKey = (s) => typeof s === "string" && PRIVATE_KEY_RE.test(s);
|
|
|
211
211
|
|
|
212
212
|
// src/version.ts
|
|
213
213
|
var PACKAGE_NAME = "@quackai/q402-mcp";
|
|
214
|
-
var PACKAGE_VERSION = "0.8.
|
|
214
|
+
var PACKAGE_VERSION = "0.8.5";
|
|
215
215
|
|
|
216
216
|
// src/tools/quote.ts
|
|
217
217
|
import { z } from "zod";
|
|
@@ -2945,7 +2945,7 @@ var BridgeHistoryInputSchema = z12.object({
|
|
|
2945
2945
|
});
|
|
2946
2946
|
var BRIDGE_HISTORY_TOOL = {
|
|
2947
2947
|
name: "q402_bridge_history",
|
|
2948
|
-
description: "
|
|
2948
|
+
description: "READ-ONLY GUIDANCE TOOL \u2014 bridge history via MCP is not yet wired in this release. It requires owner-sig auth which is dashboard-bound until session-binding lands (same follow-up as live q402_bridge_send). This tool returns a pointer to the dashboard and intentionally surfaces as an error so an LLM does not interpret the prose as an empty result. Future shape (already finalized): most-recent-first list of up to 50 CCIP bridges with messageId, source/destination chains, USDC amount, fee paid, and CCIP Explorer link. Until then, point the user at https://q402.quackai.ai/dashboard \u2192 Agent tab \u2192 Bridge History.",
|
|
2949
2949
|
inputSchema: {
|
|
2950
2950
|
type: "object",
|
|
2951
2951
|
properties: {
|
|
@@ -2986,6 +2986,7 @@ var BRIDGE_GAS_TANK_TOOL = {
|
|
|
2986
2986
|
}
|
|
2987
2987
|
}
|
|
2988
2988
|
};
|
|
2989
|
+
var GASTANK_ADDRESS = "0x10fb078594b70ee8024b2ded3d67fc3aa9ea747a";
|
|
2989
2990
|
async function runBridgeGasTank(_input) {
|
|
2990
2991
|
return {
|
|
2991
2992
|
content: [{
|
|
@@ -2997,9 +2998,9 @@ async function runBridgeGasTank(_input) {
|
|
|
2997
2998
|
" \u2022 LINK (default, ~10% cheaper)",
|
|
2998
2999
|
" \u2022 native (ETH / AVAX / ETH respectively)",
|
|
2999
3000
|
"",
|
|
3000
|
-
|
|
3001
|
+
`Top up by sending LINK or native to the Q402 Gas Tank address ${GASTANK_ADDRESS} on the source chain. The deposit-scan cron (every ~5 min) credits your Gas Tank automatically; the dashboard's "Verify" button is the immediate self-serve path.`,
|
|
3001
3002
|
"",
|
|
3002
|
-
"Live balance + deposit
|
|
3003
|
+
"Live balance + per-chain deposit detail: https://q402.quackai.ai/dashboard \u2192 Agent tab \u2192 Bridge Gas Tank"
|
|
3003
3004
|
].join("\n")
|
|
3004
3005
|
}]
|
|
3005
3006
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"description": "MCP server for Q402 — gasless USDC/USDT/RLUSD payments + Chainlink CCIP bridge across 10 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": [
|