@quackai/q402-mcp 0.8.3 → 0.8.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.
- package/README.md +1 -1
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -174,7 +174,7 @@ Then export the values in `~/.zshrc` / `~/.bashrc`. See the [Codex config refere
|
|
|
174
174
|
| `q402_recurring_skip_next` | api key | Skip only the next scheduled fire. |
|
|
175
175
|
| `q402_recurring_cancel` | api key | Permanently stop a rule. |
|
|
176
176
|
| `q402_bridge_quote` | none | Quote a Chainlink CCIP USDC bridge across eth/avax/arbitrum. Returns LINK + native fee. |
|
|
177
|
-
| `q402_bridge_send` | live mode | Execute the bridge.
|
|
177
|
+
| `q402_bridge_send` | live mode | Execute the bridge. Sandbox-only today; live execution lands once session-binding ships. |
|
|
178
178
|
| `q402_bridge_history` | api key | Recent CCIP bridges (50 most recent). |
|
|
179
179
|
| `q402_bridge_gas_tank` | api key | Per-chain LINK + native Gas Tank balance for bridge fees. |
|
|
180
180
|
|
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.4";
|
|
215
215
|
|
|
216
216
|
// src/tools/quote.ts
|
|
217
217
|
import { z } from "zod";
|
|
@@ -2905,7 +2905,7 @@ var BRIDGE_SEND_TOOL = {
|
|
|
2905
2905
|
},
|
|
2906
2906
|
sandbox: {
|
|
2907
2907
|
type: "boolean",
|
|
2908
|
-
description: "Sandbox-only
|
|
2908
|
+
description: "Sandbox-only at the current release (live bridging requires dashboard session-binding). Default true."
|
|
2909
2909
|
}
|
|
2910
2910
|
},
|
|
2911
2911
|
required: ["src", "dst", "amount", "walletId"]
|
|
@@ -2932,7 +2932,7 @@ async function runBridgeSend(input) {
|
|
|
2932
2932
|
return {
|
|
2933
2933
|
content: [{
|
|
2934
2934
|
type: "text",
|
|
2935
|
-
text: "Live CCIP bridge via MCP is not yet wired
|
|
2935
|
+
text: "Live CCIP bridge via MCP is not yet wired \u2014 agents can quote and plan via q402_bridge_quote and q402_bridge_send (sandbox), but actual execution must happen via https://q402.quackai.ai/dashboard for now. Live MCP execution lands in a follow-up release."
|
|
2936
2936
|
}],
|
|
2937
2937
|
isError: true
|
|
2938
2938
|
};
|
|
@@ -2945,7 +2945,7 @@ var BridgeHistoryInputSchema = z12.object({
|
|
|
2945
2945
|
});
|
|
2946
2946
|
var BRIDGE_HISTORY_TOOL = {
|
|
2947
2947
|
name: "q402_bridge_history",
|
|
2948
|
-
description: "List the user's recent Chainlink CCIP bridges (most-recent first, up to 50 records). Each record includes messageId, source/destination chains, USDC amount, fee paid, and CCIP Explorer link.
|
|
2948
|
+
description: "List the user's recent Chainlink CCIP bridges (most-recent first, up to 50 records). Each record includes messageId, source/destination chains, USDC amount, fee paid, and CCIP Explorer link. Returns dashboard URL guidance until owner-sig wiring lands in a follow-up.",
|
|
2949
2949
|
inputSchema: {
|
|
2950
2950
|
type: "object",
|
|
2951
2951
|
properties: {
|
|
@@ -2961,7 +2961,7 @@ async function runBridgeHistory(_input) {
|
|
|
2961
2961
|
return {
|
|
2962
2962
|
content: [{
|
|
2963
2963
|
type: "text",
|
|
2964
|
-
text: "Bridge history via MCP requires owner-sig auth, which is dashboard-managed
|
|
2964
|
+
text: "Bridge history via MCP requires owner-sig auth, which is dashboard-managed at the current release. View at https://q402.quackai.ai/dashboard \u2192 Agent tab \u2192 Bridge History."
|
|
2965
2965
|
}],
|
|
2966
2966
|
isError: true
|
|
2967
2967
|
};
|
|
@@ -2974,7 +2974,7 @@ var BridgeGasTankInputSchema = z13.object({
|
|
|
2974
2974
|
});
|
|
2975
2975
|
var BRIDGE_GAS_TANK_TOOL = {
|
|
2976
2976
|
name: "q402_bridge_gas_tank",
|
|
2977
|
-
description: "Report the user's Bridge Gas Tank state \u2014 LINK + native balance per CCIP chain (eth/avax/arbitrum). Q402 charges no markup on bridges; users pay only the actual Chainlink CCIP fee, debited from this Gas Tank. LINK fees are ~10% cheaper than native. Tool returns guidance + dashboard URL
|
|
2977
|
+
description: "Report the user's Bridge Gas Tank state \u2014 LINK + native balance per CCIP chain (eth/avax/arbitrum). Q402 charges no markup on bridges; users pay only the actual Chainlink CCIP fee, debited from this Gas Tank. LINK fees are ~10% cheaper than native. Tool returns guidance + dashboard URL until owner-sig wiring lands.",
|
|
2978
2978
|
inputSchema: {
|
|
2979
2979
|
type: "object",
|
|
2980
2980
|
properties: {
|
|
@@ -3757,9 +3757,9 @@ async function main() {
|
|
|
3757
3757
|
RECURRING_SKIP_NEXT_TOOL,
|
|
3758
3758
|
RECURRING_CANCEL_TOOL,
|
|
3759
3759
|
CLEAR_DELEGATION_TOOL,
|
|
3760
|
-
// CCIP bridge surface
|
|
3761
|
-
// triangle. Bridge_send is sandbox-only
|
|
3762
|
-
//
|
|
3760
|
+
// CCIP bridge surface — USDC routing on the eth/avax/arbitrum
|
|
3761
|
+
// triangle. Bridge_send is sandbox-only; live execution happens
|
|
3762
|
+
// through the dashboard until session-binding ships.
|
|
3763
3763
|
BRIDGE_QUOTE_TOOL,
|
|
3764
3764
|
BRIDGE_SEND_TOOL,
|
|
3765
3765
|
BRIDGE_HISTORY_TOOL,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
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": [
|