Skip to main content
Glama
quackai-org

@quackai/q402-mcp

Official
by quackai-org

@quackai/q402-mcp

MCP server for Q402 - gasless USDC, USDT, RLUSD, and USDG payments across 12 EVM chains (USDG on Robinhood Chain), callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.

npm license

Free trial available. 500 gasless transactions on BNB Chain + Base (USDC + USDT), no card. One wallet signature: https://q402.quackai.ai. Limited-time bonus: Mantle (USDC + USDT) is also covered by trial keys during 2026-08-21~08-28 UTC+9.

Trial-scope policy: API keys minted under the free-trial program (plan: "trial") settle on BNB Chain (USDC/USDT gasless) and Base (USDC/USDT gasless) as permanent chains. Avalanche trial has ended — use a Multichain key for avax. Mantle (USDC/USDT gasless) is covered during the limited-time window 2026-08-21~08-28 UTC+9 — server-side time enforcement, returns TRIAL_BNB_ONLY outside the window. Paid API keys see the full 12-chain matrix at all times.

Quote → route → (optional) settle stablecoin payments across 12 EVM chains, from any MCP client. Recipient gets the full amount; sender pays $0 gas via Q402's EIP-7702 relayer.


Quick start

  1. Register the server with your client (one-line per client).

  2. Say "Set up Q402" to your agent. It runs q402_doctor → creates ~/.q402/mcp.env → walks you through pasting keys.

1. Register the server

Client

Command / config

Claude Code (CLI)

claude mcp add q402 -- npx -y @quackai/q402-mcp

Claude Desktop (app)

Edit claude_desktop_config.json (Settings → Developer → Edit Config): { "mcpServers": { "q402": { "command": "npx", "args": ["-y", "@quackai/q402-mcp"] } } }. Restart the app.

OpenAI Codex CLI

codex mcp add q402 -- npx -y @quackai/q402-mcp (Windows fallback: see below)

Cursor

Add to ~/.cursor/mcp.json: { "mcpServers": { "q402": { "command": "npx", "args": ["-y", "@quackai/q402-mcp"] } } }

Cline

Cline → Settings → MCP Servers → Edit JSON. Same shape as Cursor.

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.

Hermes Agent (Nous Research)

YAML, not JSON. Add under mcp_servers in ~/.hermes/config.yaml (see below), then run /reload-mcp.

Any other stdio MCP client

Point it at npx -y @quackai/q402-mcp. No client-specific code.

Hermes reads MCP servers from ~/.hermes/config.yaml under mcp_servers (YAML, not JSON):

mcp_servers:
  q402:
    command: "npx"
    args: ["-y", "@quackai/q402-mcp"]
    enabled: true

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.

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.

Secrets are NOT in this config. The server reads them from ~/.q402/mcp.env (same pattern as AWS / Stripe / gh CLIs).

Some Windows setups block codex.exe from writing its own config. Add the stanza to ~/.codex/config.toml by hand:

[mcp_servers.q402]
command = "npx"
args = ["-y", "@quackai/q402-mcp"]

Then restart Codex. Same effect as codex mcp add q402 -- npx -y @quackai/q402-mcp.

2. First-time setup

Restart your client, ask: > "Set up Q402"

The agent runs q402_doctor. On first install:

  1. Creates ~/.q402/mcp.env (placeholders)

  2. Opens it in your editor

  3. Walks you through pasting an API key + a signing path into the file, not into chat

  4. Restart + re-run q402_doctor to verify

Keys never paste into chat. Local modes sign on your machine; the key never leaves the device. Mode C (server-managed) needs no PK on the client.

Pick a signing mode

Mode

Env

Signer

Notes

A

Q402_PRIVATE_KEY

MetaMask EOA, local

Simplest. Shows "Smart account" after first use (reversible via q402_clear_delegation). After EIP-7702 delegation, q402_x402_fetch is unavailable until q402_clear_delegation is called (gasless, reversible; next q402_pay re-delegates).

B

Q402_AGENTIC_PRIVATE_KEY

Agent Wallet, local

Export PK from the dashboard → Wallets → Danger Zone → Export private key. MetaMask untouched.

C

(just an API key)

Agent Wallet, server-managed

No PK on the client. One-shot pays accept Trial or Multichain keys; recurring needs Multichain on every chain (BNB included).

When more than one mode is set, q402_pay asks the user which to use. Picker: walletMode = "agentic-server" \| "agentic-local" \| "eoa".

Manual setup (no AI)

Create ~/.q402/mcp.env yourself with the template below. Live mode only flips when an API key + a signing path are populated, so saving the template as-is stays in sandbox. Q402_ENABLE_REAL_PAYMENTS=0 forces sandbox even with real keys.

# ~/.q402/mcp.env

# ── API key (pick one or both for auto-routing) ──
Q402_TRIAL_API_KEY=          # Free Trial, BNB (permanent) + Base (permanent) + Mantle limited-time (from /event)
Q402_MULTICHAIN_API_KEY=     # Paid Multichain, all 12 chains (from /payment)

# ── Signing path - pick ONE of Mode A / B / C ──
# Mode A: your MetaMask EOA's hex private key.
# Hardware wallets (Ledger / Trezor) are NOT supported here - Q402
# needs a raw hex key it can sign EIP-7702 type-4 authorizations with.
Q402_PRIVATE_KEY=

# Mode B: exported Agent Wallet pk from the dashboard. Keeps your
# MetaMask untouched. Get it at:
#   https://q402.quackai.ai/dashboard → Agent tab → Export
Q402_AGENTIC_PRIVATE_KEY=

# Mode C: no PK needed. A Trial key also enables Mode C one-shot payments;
# leave both PK lines blank. Q402 signs with the server-managed Agent Wallet.
# Multichain key required for recurring, Mode C batch, and bridge/OFT.
# Optional: pin one of your Agent Wallets when you have multiple (max 10).
# Q402_AGENT_WALLET_ADDRESS=0x...

# Live mode switch:
#   0 = sandbox (test mode, no funds move)
#   1 = real on-chain payments
# Default 1 - safe because mode only flips to live when an API key AND
# at least one valid signing path (A/B/C) are populated above.
Q402_ENABLE_REAL_PAYMENTS=1

# Default Q402 deployment. Only change for self-hosted.
Q402_RELAY_BASE_URL=https://q402.quackai.ai/api

# Safety guards (max-amount ships uncommented at $200; lower for tighter caps):
Q402_MAX_AMOUNT_PER_CALL=200
# Q402_ALLOWED_RECIPIENTS=0xabc...,0xdef...

# Pre-check (automatic trust-check before outgoing payments in live mode).
# Triggers when paying a first-time counterparty OR amount >= $1.
# Fee: $0.02 per check; verdict cached 7 days (no repeat charge within TTL).
# Set to 1 to disable pre-check entirely (even first-time / large-amount pays).
# Q402_DISABLE_PRECHECK=0

Then chmod 600 ~/.q402/mcp.env (Unix) and restart your client. That's the full configuration. Heads up on the EIP-7702 side effect: after your first live payment on a chain, your wallet will show 'Smart account' in MetaMask / OKX - that's the delegation Q402 uses for gasless settlement, reversible anytime via q402_clear_delegation. Important for x402 users: after EIP-7702 delegation is active, q402_x402_fetch cannot sign x402 payments until you call q402_clear_delegation (gasless on Base, reversible — the next q402_pay re-delegates automatically).

Advanced - explicit env injection

If you'd rather skip the file and inject env vars yourself (e.g. via Codex env_vars allow-list, a secrets manager, or shell exports), the server falls through to process.env - and process.env wins over file values on conflicts. So existing shell-export setups keep working unchanged.

[mcp_servers.q402]
command = "npx"
args = ["-y", "@quackai/q402-mcp"]
startup_timeout_sec = 20.0
env_vars = [
  "Q402_TRIAL_API_KEY",
  "Q402_MULTICHAIN_API_KEY",
  "Q402_PRIVATE_KEY",
  "Q402_AGENTIC_PRIVATE_KEY",
  "Q402_AGENT_WALLET_ADDRESS",
  "Q402_ENABLE_REAL_PAYMENTS",
  "Q402_RELAY_BASE_URL",
]

Then export the values in ~/.zshrc / ~/.bashrc. See the Codex config reference for the full schema.

Try it without any setup

q402_quote works with zero configuration - no API key, no private key, no env file. Ask:

"Compare gas costs to send 50 USDC to vitalik.eth across all 12 Q402 chains."


Q402_RELAY_BASE_URL overrides the relay endpoint. Set it explicitly when running against a self-hosted Q402 deployment or a non-canonical environment.


Related MCP server: tempo-mcp

Tools exposed

47 tools, grouped by capability. Read-only by default; live mode needs a live API key, a signing path, and Q402_ENABLE_REAL_PAYMENTS=1. Rows marked live mode move funds and need an explicit in-chat confirmation.

Tool

Auth

Purpose

Payments & wallet

q402_doctor

none

First-install onboarding + ongoing health check (per-scope quota, EIP-7702 state, relay reachability, slot-mismatch warnings).

q402_quote

none

Compare gas + supported tokens across chains.

q402_balance

api key

Verify key + remaining quota.

q402_pay

live mode

Single-recipient gasless transfer. Sandbox by default. In live mode, automatically runs a trust-check ($0.02) on the recipient before each payment when it is a first-time counterparty or the amount ≥ $1; verdict cached 7 days (no double-charge within TTL). Degrades to free basic verdict only when wallet balance exactly covers the transfer but not the $0.02 fee, or when only a non-USDC rail token is available. Pre-check never blocks the main transaction. Disable with Q402_DISABLE_PRECHECK=1.

q402_batch_pay

live mode

Up to 20 recipients per call. Trial: 5 - applies when paying with your own key (Mode A/B); server-managed Agent Wallet (Mode C) batch is paid Multichain-only. Same auto-routing as q402_pay. 6+ BNB batches with Trial set return status="ambiguous" so the agent asks how to split. xlayer + stable not batchable - use q402_pay in a loop.

q402_receipt

none

Fetch + locally verify a Trust Receipt (rct_… id, ECDSA against the relayer EOA).

q402_wallet_status

private key

Per-chain EIP-7702 state for the EOA derived from Q402_PRIVATE_KEY.

q402_clear_delegation

private key / api key

Clear EIP-7702 delegation (Mode A/B local key OR Mode C api key, server-signed). Sponsored on every chain except Ethereum (billed to your Gas Tank). Two-phase consent (consentToken).

q402_agentic_info

api key

Agent Wallet info (addresses, per-wallet caps, daily-spend used, ERC-8004 id). Drives Mode C.

Treasury memory

q402_memory_summary

api key

Treasury overview over a window: USD-stablecoin spend by chain/source, top vendors, schedules, open requests/escrow, failures. Read-only.

q402_vendor_history

api key

Total paid to one vendor (or a vendor leaderboard) with recurring cadence. Read-only.

q402_agent_spend_report

api key

Per-Agent-Wallet spend with each wallet's caps. Read-only.

Recurring

q402_recurring_list

api key

List scheduled rules.

q402_recurring_create

api key

Author a recurring rule. Paid Multichain on EVERY chain (BNB included).

q402_recurring_fires

api key

Last 50 fires per rule (timestamp + txHashes + amount).

q402_recurring_pause

api key

Pause a rule (reversible).

q402_recurring_resume

api key

Resume a paused / stopped rule.

q402_recurring_skip_next

api key

Skip only the next scheduled fire.

q402_recurring_cancel

api key

Permanently stop a rule.

Bridge (CCIP + LayerZero)

q402_bridge_quote

none

Quote a Chainlink CCIP USDC bridge across eth/avax/arbitrum. Returns LINK + native fee.

q402_bridge_send

live mode

Execute a CCIP bridge from the user's Agent Wallet. Mode C only (server-managed). Sandbox-by-default; sandbox: false + live Multichain key + Q402_ENABLE_REAL_PAYMENTS=1 fires a real on-chain bridge.

q402_bridge_history

not yet wired

Pointer to the dashboard. Returns { implemented: false, dashboardUrl, dashboardPath } - read-only guidance until owner-sig auth lands in MCP.

q402_bridge_gas_tank

not yet wired

Static guidance + dashboard pointer for the Bridge Gas Tank top-up flow. Live balance lookup needs owner-sig auth (dashboard for now).

q402_oft_quote

none

Quote the LayerZero fee for bridging USDT0 across the OFT set (eth/arbitrum/mantle/monad/xlayer). Returns native messaging fee + delivered amount. Companion to q402_bridge_quote (CCIP/USDC).

q402_oft_send

live mode

Bridge USDT0 via LayerZero OFT from the Agent Wallet to the same address on the destination chain. Mode C (server-managed). Sandbox-by-default; confirm: true + live Multichain key + Q402_ENABLE_REAL_PAYMENTS=1 fires a real bridge.

q402_oft_history

not yet wired

Pointer to the dashboard for LayerZero OFT bridge history. Returns { implemented: false, dashboardUrl } - read-only guidance until owner-sig auth lands in MCP.

Yield

q402_yield_reserves

none

List Q402 Yield lending markets - protocol, chain, asset, market address, supply APY. Curated lending markets per chain (Aave/Lista on BNB, Morpho on Base); each market reports its own venue.

q402_yield_positions

api key

Show the Agent Wallet's open Q402 Yield positions (balance, principal, accrued interest, APY) + total supplied in USD. Mode C.

q402_yield_deposit

live mode

Supply the Agent Wallet's stablecoins into Q402 Yield's curated lending market per chain: BNB (USDC/USDT) or Base (USDC only). Mode C. Requires confirm: true; sandbox-by-default.

q402_yield_withdraw

live mode

Withdraw supplied stablecoins out of Q402 Yield (curated lending markets on BNB and Base) back to the Agent Wallet (amount: "max" = max currently redeemable, which vault caps or queues can leave below the full position). Mode C. Requires confirm: true; sandbox-by-default.

Staking

q402_stake

live mode

Gasless Q (QuackAI) staking into QuackAiStake on BNB Chain. Lock tiers 0-3 (30d/10%, 60d/15%, 120d/32%, 180d/40% APR). amount: "max" stakes the whole Q balance. Mode C. Requires confirm: true; sandbox-by-default.

q402_unstake

live mode

Gasless unstake of matured Q on BNB. Per-record: exit one stake by index (ith) or all: true for every matured stake. Mode C. Requires confirm: true; sandbox-by-default.

q402_stake_positions

live mode

The Agent Wallet's open Q stakes (indices, maturity, exitable) + liquid Q balance. Read-only; Mode C.

Payment requests

q402_request_create

api key

Publish a payment request (invoice). No funds move; returns a shareable /pay link + req_… id. Recipient defaults to the Agent Wallet.

q402_request_status

none

Look up a payment request by req_… id (amount, token, chain, recipient, status). Read-only; notFound instead of throwing.

q402_request_pay

live mode

Pay a request gaslessly from the payer's own Agent Wallet (Mode C). Terms come from the stored request, so they can't be redirected. Two-phase consent (same as q402_pay).

Escrow

q402_escrow_create

api key

Create a gasless non-custodial escrow (pending record, moves no funds); optional walletId funds it from an Agent Wallet. Chain availability served by GET /api/escrow/chains — the server enforces on every request.

q402_escrow_status

none

Read an escrow's state, parties, amount, and tx hashes. Read-only.

q402_escrow_lock

live mode

Fund a pending escrow gaslessly (EIP-7702); the server signs for an Agent-Wallet buyer. Sandbox-by-default. Chain availability served by GET /api/escrow/chains.

q402_escrow_release

live mode

Buyer releases a locked escrow to the seller (gasless). Sandbox-by-default.

q402_escrow_refund

live mode

Permissionless refund to the buyer after the timeout / resolve window.

q402_escrow_dispute

live mode

A party disputes an open escrow (requires a named arbiter).

Triggers (RedStone)

q402_redstone_feeds

none

Which RedStone feeds this deployment can drive triggers off (NAV / price / RWA). Read-only.

q402_redstone_trigger_create

live mode

Arm a gasless payout that fires once when a RedStone feed crosses a threshold (edge-latched).

q402_redstone_trigger_list

live mode

List the Agent Wallet's RedStone triggers + their state.

q402_redstone_trigger_cancel

live mode

Permanently stop a RedStone trigger.

x402 (outbound)

q402_x402_fetch

live mode

Fetch any x402-gated URL and handle HTTP 402 automatically: validates Base USDC payment option, guards against excess spend, signs EIP-3009 TransferWithAuthorization, and retries with the correct payment header (PAYMENT-SIGNATURE for v2 servers, X-PAYMENT for v1 legacy). Non-402 responses pass through unchanged. Returns status:"settled_no_delivery" (fundsMoved:true, retrySafe:false) when a txHash in the response confirms funds moved but the seller returned an error. Returns status:"settled_status_unknown" (fundsMovedUnknown:true, retrySafe:false) when no settlement proof exists — funds may or may not have moved. Do NOT retry either outcome.

q402_pay + q402_batch_pay + q402_bridge_send + q402_yield_deposit + q402_yield_withdraw + q402_stake + q402_unstake + q402_request_pay require explicit in-chat confirmation. Batch confirmation = full batch, not per-row.

Note: q402_pay expects a 0x address; ENS is not resolved server-side, so resolve it client-side first. Per-chain Gas Tank balances + full TX history live in the dashboard (wallet-signature only).


x402 outbound payments (q402_x402_fetch)

q402_x402_fetch is a general-purpose x402 client. It fetches any URL and handles HTTP 402 payment-required responses automatically. When the server returns a non-402 status, the response passes through unchanged, so it also works as a regular fetch tool.

What it solves. Some APIs and content endpoints use the x402 protocol to charge per-request. An agent hitting such a URL receives an HTTP 402 response with machine-readable payment requirements. q402_x402_fetch reads those requirements, validates the payment option, signs an EIP-3009 TransferWithAuthorization against Base USDC, encodes it as a base64 JSON payload, and retries the request — using PAYMENT-SIGNATURE for x402 v2 servers and X-PAYMENT for legacy v1 servers — all in one call.

Supported. scheme=exact + network=base (CAIP-2 eip155:8453; also accepted: base-mainnet) + Base USDC only. Any other scheme, network, or asset returns an explicit rejection and no signature is produced.

Guards (three layers).

Guard

Env var

Default

Per-call spend cap

Q402_MAX_AMOUNT_PER_CALL

$200

Per-session cumulative cap

Q402_X402_SESSION_CAP_USD

$5

Two-phase consent

consentToken

required on payment

Two-phase consent flow: the first call (without consentToken) returns needs_confirmation and a preview of the amount and recipient. Re-call with the same arguments plus the returned consentToken to authorize the payment.

Result outcomes — read before summarizing to users.

Outcome

Fields

Meaning

success: true

body, paid: true, payTo, amountUsd

Content delivered, payment settled.

success: false, needsConsent set

consentToken, preview

No payment made. Re-call with consentToken.

success: false, status: "settled_no_delivery"

fundsMoved: true, retrySafe: false, recipient, amount, txHash, guidance

Funds confirmed left the wallet, content not delivered. Settlement is proven by txHash from the response. The seller accepted payment but returned an error. Do NOT tell the user "the payment didn't go through" — funds moved. Do NOT retry — that would make a second payment. Surface amount, recipient, txHash, and guidance to the user so they can reconcile with the seller.

success: false, status: "settled_status_unknown"

fundsMovedUnknown: true, retrySafe: false, recipient, amount, txHash: null, guidance

Settlement unknown — funds may or may not have moved. Payment header was sent but the response contained no settlement proof (no txHash). Do NOT assert that funds moved or didn't move. Do NOT retry with the same parameters — funds may have already moved. Surface guidance so the user can check their wallet balance and contact the seller.

success: false (other)

error

Payment blocked or rejected before settlement. No funds moved. Safe to retry.

Audit. Every 402 attempt — settled, settled_no_delivery, settled_status_unknown, or blocked — is written to the local audit log at ~/.q402/x402-audit.json and surfaced in q402_agent_spend_report. Both settled_no_delivery and settled_status_unknown outcomes count as spend in the report.

Minimum working example.

{
  "url": "https://api.example.com/data",
  "method": "GET",
  "confirm": true
}

If the endpoint returns 402, the tool responds with needs_confirmation and a consentToken. Re-call with those same arguments plus the consentToken to authorize payment.

Requirements. Q402_ENABLE_REAL_PAYMENTS=1 plus a local signing key (Q402_AGENTIC_PRIVATE_KEY or Q402_PRIVATE_KEY). The signed authorization goes directly to the seller's facilitator endpoint; the Q402 relay is not involved in this path.

Prerequisite — delegation check. q402_x402_fetch uses EIP-3009 signing, which is incompatible with an EIP-7702-delegated wallet. If you have previously called q402_pay on this wallet, it may be EIP-7702-delegated (shown as 'Smart account' in MetaMask / OKX). In that state, q402_x402_fetch will fail. Recovery: call q402_clear_delegation (gasless on Base, reversible). After clearing, q402_x402_fetch works again. The next q402_pay re-delegates automatically.


Sandbox vs live mode

Sandbox default: q402_pay returns a fake txHash with success: false and sandbox: true. No funds, no quota.

Live = (a) live API key (q402_live_*), (b) a signing path (A / B / C), (c) Q402_ENABLE_REAL_PAYMENTS=1. The live flag defaults to 1 - gate only flips when both other conditions are met. Set to 0 to force sandbox even with real keys.

Template q402_doctor writes to ~/.q402/mcp.env:

# ── API key - fill ONE (or both for auto-routing) ──
# Auto-routing (same for q402_pay AND q402_batch_pay):
#   chain="bnb" or "base" + Q402_TRIAL_API_KEY set  → Trial (free sponsored)
#   anything else                                    → Multichain (paid 12-chain)
# Batch ambiguity: 6+ recipient BNB/Base batch with Trial set returns
#   status="ambiguous" instead of executing - agent asks user to pick.
# Override per call with keyScope: "auto" | "trial" | "multichain".
Q402_TRIAL_API_KEY=                # BNB + Base sponsored Trial key (from /event; Avalanche trial ended)
Q402_MULTICHAIN_API_KEY=           # paid 12-chain key (per-chain Gas Tank)

# ── Signing path - pick ONE of Mode A / B / C ──
Q402_PRIVATE_KEY=                  # Mode A: real EOA pk (0x + 64 hex)
Q402_AGENTIC_PRIVATE_KEY=          # Mode B: exported Agent Wallet pk (from dashboard)
# Mode C: leave both PK lines blank. A Trial key enables one-shot Mode C
# payments; Multichain key required for recurring, batch, and bridge/OFT.
# Q402 signs with the server-managed Agent Wallet. Optionally:
# Q402_AGENT_WALLET_ADDRESS=0x...   # pin one of your wallets when you have multiple

# Live mode switch:
#   0 = sandbox (test mode, no funds move - every q402_pay returns a fake hash)
#   1 = real on-chain payments (live mode)
# Default 1. Safe because the gate only flips to live when an API key AND
# at least one valid signing path (A/B/C) are populated. Empty values
# fail the gate, so partial setups stay in sandbox with a hint.
Q402_ENABLE_REAL_PAYMENTS=1

# Pre-check trust-check (live mode). Triggers for first-time counterparties or
# payments >= $1. Fee: $0.02 per check; cached 7 days. Never blocks the main tx.
# Set Q402_DISABLE_PRECHECK=1 to opt out.

Anything missing for the resolved scope → automatic sandbox fallback with a hint pointing at what to set.

Sandbox responses carry success: false, sandbox: true, mode: "sandbox", method: "sandbox", plus a setupHint explaining why - four signals so a downstream summary can't claim success.

Hard caps

Env var

Default

Effect

Q402_MAX_AMOUNT_PER_CALL

200

Reject USDC/USDT/RLUSD calls with amount > N USD. Q (QuackAI) is exempt by design (your own token); the recipient allowlist + confirmation still apply to it.

Q402_X402_SESSION_CAP_USD

5

Per-session cumulative spend cap for q402_x402_fetch (USD). Blocked if the session total would exceed this value. Resets on MCP server restart.

Q402_ALLOWED_RECIPIENTS

off

Comma-separated address allowlist.

Q402_BUILDER_CODE

off

Base Builder Code for q402_x402_fetch on-chain attribution (ERC-8021 via x402 v2 extensions.builder-code).

Q402_DISABLE_PRECHECK

off

Set to 1 to opt out of the automatic pre-check trust-check on outgoing payments.

Combined with the two-phase consentToken + live-mode env, a stablecoin payment needs: a preview the user approved + amount ≤ cap + recipient allowed + all 3 live envs. Q (QuackAI) is exempt from the cap (your own token); the preview, recipient allowlist, and live-mode env still apply to it.


Configuration reference

Env var

Required for

Notes

Q402_TRIAL_API_KEY

live-pay (BNB + Base + Mantle)

BNB Chain + Base sponsored Trial key (permanent). Avalanche trial has ended — use Multichain for avax. Also covers Mantle during the limited-time window 2026-08-21~08-28 UTC+9. Free at https://q402.quackai.ai/event. Auto-routed for trial-eligible chains in both q402_pay and q402_batch_pay (≤5 recipients) when set. 6+ recipient trial batches return status="ambiguous" so the agent can ask the user how to split.

Q402_MULTICHAIN_API_KEY

live-pay (12-chain)

Paid 12-chain key. Get one at https://q402.quackai.ai/payment. Auto-routed for chains outside BNB/Base (including avax since the Avalanche trial ended) and for BNB/Base when no Trial key is set. Cap: 20 recipients per batch. Mode C one-shot pays accept Trial or Multichain; Multichain required for recurring, Mode C batch, and bridge/OFT.

Q402_PRIVATE_KEY

Mode A

Hex private key of your MetaMask EOA. Signer for local Mode A. Never share. Never paste in chat.

Q402_AGENTIC_PRIVATE_KEY

Mode B

Exported Agent Wallet hex private key from the dashboard (Agent tab → Export). Signs locally, but the signer is your dedicated Agent Wallet - MetaMask is never touched. Never share. Never paste in chat.

Q402_AGENT_WALLET_ADDRESS

Mode C (optional)

When you have multiple server-managed Agent Wallets (max 10 per owner), set this to the lowercased 0x… address of the one Q402 should spend from. Omit to use the default wallet. Ignored in Modes A/B.

Q402_ENABLE_REAL_PAYMENTS

live-pay

Set to 1 to opt in. Any other value (or unset) → sandbox.

Q402_MAX_AMOUNT_PER_CALL

optional

USD-equivalent cap for USDC/USDT/RLUSD. Defaults to 200. Lower for tighter agent blast-radius. Q (QuackAI) is exempt by design (your own token).

Q402_X402_SESSION_CAP_USD

optional

Per-session cumulative spend cap for q402_x402_fetch (USD). Defaults to 5. Resets on MCP server restart.

Q402_ALLOWED_RECIPIENTS

optional

Comma-separated lowercase addresses. Defaults to no allowlist.

Q402_BUILDER_CODE

optional

Base Builder Code (1–32 lowercase letters/numbers/underscores, e.g. bc_fu2v7kgf). Set to your registered Builder Code to attach on-chain ERC-8021 attribution to every q402_x402_fetch payment via the x402 extensions.builder-code field.

Q402_DISABLE_PRECHECK

optional

Set to 1 to disable the automatic pre-check trust-check that runs before outgoing payments in live mode. When unset (default), pre-check runs automatically for first-time counterparties and payments ≥ $1. The pre-check fee is $0.02; verdicts are cached 7 days (no repeat charge within TTL). The pre-check never blocks the main transaction.

Q402_RELAY_BASE_URL

optional

Defaults to https://q402.quackai.ai/api. Override for self-hosted Q402.

If you set up Q402 before v0.5.0 you may have a single Q402_API_KEY env var. The server still resolves that silently - your existing integration won't break. New installs should use the two-key model above (Q402_TRIAL_API_KEY and/or Q402_MULTICHAIN_API_KEY); q402_doctor and the rest of the docs only guide users to those two. To migrate, rename your existing var to Q402_MULTICHAIN_API_KEY in ~/.q402/mcp.env and restart your MCP client.


Supported chains

Chain

Chain ID

Token(s)

Notes

BNB Chain

56

USDC, USDT

Ethereum

1

USDC, USDT, RLUSD

L1 - gas is volatile, quote is a snapshot. RLUSD (Ripple USD, NY DFS regulated, decimals 18) Ethereum-only.

Avalanche C-Chain

43114

USDC, USDT

X Layer

196

USDC, USDT

Stable

988

USDT0 (USDC and USDT both alias)

Gas paid in USDT0.

Mantle

5000

USDC, USDT0

LayerZero OFT USDT0 since 2025-11-27.

Injective EVM

1776

USDC, USDT

Native Circle USDC (CCTP) live since 2026-06 + canonical Tether (USDT0).

Monad

143

USDC, USDT0

Native Circle USDC (CCTP V2) + USDT0 (LayerZero OFT).

Scroll

534352

USDC, USDT

zkEVM L2 - EIP-7702 live since the Euclid Phase 2 upgrade (2025-04-22).

Arbitrum One

42161

USDC, USDT

Optimistic rollup - same EIP-7702 signing path as Ethereum. CCIP bridge endpoint (eth ⇄ avax ⇄ arbitrum).

Base

8453

USDC, USDT

OP Stack L2 - same EIP-7702 signing path as Ethereum. Native Circle USDC + bridged Tether USD.

Robinhood Chain

4663

USDG

Arbitrum Nitro L2 - USDG only (Paxos Global Dollar, 6 decimals). Circle USDC / Tether are not canonical here; gasless USDG payments.


Why this exists

AI agents are becoming the default interface for software, but the moment they need to move money the stack breaks: holding gas tokens, signing every transaction, managing wallets across many chains. None of that scales when the agent is supposed to act on its own.

Q402 is the payment layer for that gap. A single signing primitive (EIP-712 + EIP-7702) settles gasless stablecoin payments across 12 EVM chains, with an ECDSA-signed Trust Receipt for every transaction. The MCP package exposes that surface inside Claude, Codex, Cursor, and Cline - your agent can quote, send, batch, and audit payments from a natural-language prompt.

Single transfers and multi-recipient batches ship today. The next layer - recurring payouts, conditional execution, and policy-gated treasury automation - is the same primitive composed differently. We're building toward agents that operate real budgets, settle among themselves, and move value through workflows no human triggers manually.


Hooks - programmable payment policies

Q402 Hooks 1.0 is a policy engine that attaches rules to the payment lifecycle: OFAC compliance screening, spend caps + recipient allowlists, ERC-8004 reputation gating, Chainlink-oracle conditional settlement ("only when BTC ≥ $80k"), and automatic multi-payee splits - plus an approval-required soft block for large payments (returns 202 approval_required; the caller re-submits out of band, no stored hold in v1). Uniswap v4 brought programmable hooks to DEX liquidity; Q402 brings them to AI-agent payments.

Developer reference: docs/HOOKS.md - lifecycle, the Hook contract, every shipped hook with config + examples.

Escrow on Base: docs/ESCROW-VS-INSTANT.md - instant vs. escrowed payment decision guide for agents. docs/ESCROW-BASE-DEPLOY-RUNBOOK.md - engineering runbook for Base mainnet vault deploy (hands-only, not for agents).


Repository

Source code: https://github.com/quackai-org/q402-mcp Issues / requests: https://github.com/quackai-org/q402-mcp/issues

License

Apache-2.0 - see LICENSE.

Available Tools

50 tools
q402_agentic_infoA

Read-only Agent Wallet introspection. Returns the wallet address, per-tx and daily caps, archive state, an aggregate USD balance, AND a per-chain breakdown (byChain) of which chains actually hold USDC/USDT across the 12 supported EVM chains - so you can see WHERE funds are before routing a payment. Authenticated by the configured Multichain API key - no private key required. Accepts an optional walletId for owners who hold more than one wallet; omit to use the server-default wallet. Use this whenever the user asks 'what's in my agent wallet?', 'how much do I have on Base / on each chain?', or 'what's the spending limit?'

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses read-only nature, authentication via Multichain API key with no private key required, default wallet behavior when walletId is omitted, and the scope of 12 supported EVM chains. This is strong behavioral transparency, though it doesn't mention error cases or data freshness, so a 4 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, each serving a purpose: what it does, what it returns, auth, parameter, and use cases. It is front-loaded with the tool's primary purpose. While a bit dense, it avoids fluff and is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description covers return content, auth, parameter default, and usage triggers. It explains the byChain breakdown and the constraint to USDC/USDT across 12 chains. It does not define 'archive state' or 'per-tx and daily caps' in detail, but these are reasonably self-explanatory. Overall, it is complete for a read-only introspection tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the single walletId parameter, and the schema already explains optionality, lowercase address, and default resolution. The tool description merely restates this as 'optional walletId for owners who hold more than one wallet; omit to use the server-default wallet', adding no meaningful semantics beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool is 'Read-only Agent Wallet introspection' and enumerates specific return values: wallet address, per-tx and daily caps, archive state, aggregate USD balance, and per-chain breakdown. It explicitly distinguishes from siblings by noting the per-chain breakdown across 12 EVM chains and the use case 'before routing a payment', which differentiates it from tools like q402_balance or q402_wallet_status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit trigger phrases: "Use this whenever the user asks 'what's in my agent wallet?', 'how much do I have on Base / on each chain?', or 'what's the spending limit?'" This gives clear when-to-use guidance. However, it does not name alternatives or state when not to use it, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_agent_spend_reportA

Per-agent spend report: for each of the owner's Agent Wallets, the USD spent and tx count in the window, plus its label and its daily / per-transaction caps. Answers 'what did my Research agent spend this week?' and 'which agent is spending the most?'. Spend is attributed by the wallet that sent each payment, so it is precise for agents that run on their own dedicated Agent Wallet. Read-only and free: any live API key (Trial or Multichain).

ParametersJSON Schema
NameRequiredDescriptionDefault
windowNoTime window. Default 7d.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and states 'Read-only and free: any live API key (Trial or Multichain)', disclosing safety and auth requirements. It also explains attribution nuances, but does not cover pagination or rate limits, which are minor for a simple report tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each adding value: core report content, example use cases, and attribution/safety. It is front-loaded with the main purpose and has zero fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one optional parameter and no output schema, the description sufficiently covers what is returned (spend, tx count, label, caps), when to use it, and its safety profile. There are no major gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter 'window' is fully described in the schema with an enum and default. The description adds only an example ('this week'), which is minor, but since schema coverage is 100%, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb+resource ('Per-agent spend report') and clearly states what it shows: USD spent, tx count, labels, and caps for each Agent Wallet. It also includes example questions, making its purpose unmistakable and distinct from sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool through example questions ('what did my Research agent spend this week?') and explains the attribution model for precise per-agent reporting. It does not explicitly name alternative tools or exclusion criteria, but the use case is well implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_balanceA

Verify the configured API key(s) and report each one's plan tier (live vs sandbox vs trial). Read-only. When both Q402_TRIAL_API_KEY and Q402_MULTICHAIN_API_KEY are set, returns BOTH summaries so the agent can show the user trial credits AND paid credits in one view. For trial-scoped keys, returns days-left + credits-remaining for the trial allotment. Free trial available at https://q402.quackai.ai/event - 2,000 gasless TX over 30 days. For per-chain gas tank balances, point the user at https://q402.quackai.ai/dashboard - those need a wallet signature, not a bare key.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states 'Read-only', discloses conditional behavior when both keys are set, and details the trial-credit output (days-left and credits-remaining). It also adds external links for further context, which is useful but not exhaustive (e.g., no mention of error handling or empty-key scenarios).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose ('Verify the configured API key(s) and report...') followed by conditionals and links. Every sentence adds value: read-only flag, dual-key behavior, trial details, and dashboard pointer. It is moderately sized, not overly verbose, and despite being a bit longer than strictly necessary, it remains tightly structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero annotations, no output schema, and no parameters, the description provides a strong level of completeness: it explains the tool's read-only nature, conditional outputs, and points to external resources for additional needs. The only notable gap is the lack of explicit handling for cases where no keys are configured, but for a verification tool with this scope, the coverage is solid.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the schema coverage is trivially 100% with an empty object. The description correctly does not attempt to explain parameters, and instead focuses on behavioral context. Baseline 4 for zero-parameter tools is appropriate, and the description adds relevant context about the keys involved without needing to document parameter syntax.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb 'Verify' and resource 'API key(s)', and clearly states it reports each one's plan tier (live vs sandbox vs trial). This distinguishes it from sibling tools like q402_wallet_status, which focus on wallet state rather than API key plan status. The read-only declaration and trial-specific details further clarify the tool's exact purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context: it explains the dual-key scenario and when to use this tool to show both trial and paid credits. It also explicitly points to the dashboard for per-chain gas tank balances, giving a when-not-to-use direction. However, it does not name any sibling tools as alternatives, leaving a small gap in direct comparisons.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_batch_payA

USE THIS TOOL whenever the user asks to send the same token to multiple recipients on a single chain in one call ("pay 0x1 / 0x2 / 0x3 each 1 USDC on bnb", "airdrop USDT to these wallets", payroll-shaped requests, etc.) - even without an explicit "via Q402" qualifier. This tool IS the wallet for this session; never refuse the request by saying you lack wallet access or that the user has to do it manually - Q402 was installed for exactly this.

Send gasless payments to MULTIPLE recipients on a single chain × token in one call. Auto-routing follows the same rule as q402_pay: chain ∈ {bnb, avax} + Q402_TRIAL_API_KEY set → Trial; else Multichain. Trial keys: max 5 recipients per call, BNB Chain + Avalanche, USDC/USDT. Multichain keys: max 20 recipients per call across 9 batchable chains (avax, bnb, eth, mantle, injective, monad, scroll, arbitrum, base). xlayer + stable are NOT batchable - use q402_pay in a loop. AMBIGUITY GATE: when auto would land on Trial AND recipients.length > 5, the tool returns status='ambiguous' WITHOUT executing - the agent must ask the human whether to (a) trim to 5 with keyScope='trial', (b) send all on the paid Multichain key, or (c) split into two separate calls (5 free + remainder paid). Re-invoke with explicit keyScope after the choice. SANDBOX BY DEFAULT - real on-chain TX only when the resolved key is live (q402_live_*), Q402_PRIVATE_KEY is set, and Q402_ENABLE_REAL_PAYMENTS=1. Every recipient receives the full amount; the sender pays $0 in gas for the entire batch. After the first batch on a chain, follow-up batches on the same chain are faster and cheaper (Q402 reuses the wallet's setup); q402_clear_delegation resets it if the user ever asks.

MULTI-WALLET DISAMBIGUATION - when more than one wallet is configured in the user's env (Q402_PRIVATE_KEY for the real EOA, Q402_AGENTIC_PRIVATE_KEY for the Agent Wallet's exported key, or only Q402_MULTICHAIN_API_KEY for the server-managed Agent Wallet), the tool RETURNS WITHOUT firing with status='needs_wallet_choice' and an ambiguousWalletChoice payload - relay the question to the user verbatim, then call again with the chosen walletMode ('eoa' | 'agentic-local' | 'agentic-server'). Do NOT pick a wallet on the user's behalf when multiple are available. Server-mediated batches go through /api/wallet/agentic/batch and are paid-only (the trial key cannot batch).

ALWAYS get explicit user confirmation of the complete recipient + amount list, chain, and token in conversation immediately before calling this tool - the user must approve the full batch, not the individual rows.

TWO-PHASE CONSENT: confirm:true alone does NOT send. Call this tool first WITHOUT consentToken - it returns status="needs_confirmation" with a setupHint preview of every recipient + amount and a consentToken, and moves no money. Relay that preview to the user, get an explicit yes, then re-call with the SAME args plus the consentToken to execute. The token is re-derived from the batch about to run, so the previewed batch can't be swapped.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainYesTarget chain. Applies to every recipient in the batch. xlayer + stable are NOT supported here - use q402_pay in a loop.
tokenYesToken for the entire batch. USDC / USDT supported on most chains; RLUSD (decimals 18) is Ethereum-only; Q (QuackAI, decimals 18) is BNB-only; USDG (Paxos Global Dollar, decimals 6) is Robinhood-Chain-only.
confirmYesMUST be true and only set after the user has confirmed the entire batch in chat.
keyScopeNoWhich API key to use. "auto" (default): BNB/Avax + trial key set → Trial; else Multichain. When auto would land on Trial AND recipients.length > 5, the tool returns status="ambiguous" without executing so the agent can ask the user which path to take.
walletIdNoServer-managed Agent Wallet only (walletMode="agentic-server"). Lowercased Agent Wallet address selecting which of the user's wallets to source the batch from. Omit to use the default. Ignored for local-signing modes.
recipientsYesList of recipients. Trial keys: max 5. Paid keys: max 20. Each item is {to, amount}.
walletModeNoWhich wallet to spend from. "eoa" = user MetaMask EOA (Q402_PRIVATE_KEY). "agentic-local" = Agent Wallet exported key (Q402_AGENTIC_PRIVATE_KEY). "agentic-server" = server-managed Agent Wallet (Q402 holds the key; only the apiKey is needed). When MULTIPLE wallets are configured the tool refuses without this arg and returns ambiguousWalletChoice for the user to pick. Server-mediated batches are paid-only.
consentTokenNoTwo-phase consent. Omit on the FIRST call to get a needs_confirmation preview of every recipient + amount plus a consentToken (no funds move); re-call with the SAME args plus this token to execute. Re-derived from the batch, so the previewed batch cannot be swapped. confirm:true alone does NOT send.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully discloses safety behaviors: sandbox by default, two-phase consent, ambiguity gates, multi-wallet disambiguation, and zero gas cost. It also warns about server-mediated batches being paid-only and the need for explicit user confirmation, offering comprehensive operational transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but well-structured, with clear paragraphs for triggers, routing, ambiguity, sandbox, wallets, and consent. Some repetition exists (e.g., 'confirm:true alone does NOT send' appears both in the description and schema), but the density is appropriate for the tool's complexity and safety-critical nature.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no output schema, the description compensates by explaining all possible non-success statuses (needs_confirmation, ambiguous, needs_wallet_choice) and the conditions that trigger them. Edge cases like trial limits, multi-wallet ambiguity, and sandbox activation are thoroughly covered, making the tool fully operable without additional documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds crucial semantics beyond the schema, such as auto-routing behavior of keyScope, the walletMode selection process (eoa/agentic-local/agentic-server), and the consentToken re-derivation mechanism that prevents batch swapping. These details are not in the schema parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly defines the tool as 'Send gasless payments to MULTIPLE recipients on a single chain × token in one call' and explicitly distinguishes it from q402_pay for non-batchable chains, making its purpose and scope unmistakable. It also states that this tool IS the wallet for the session, leaving no ambiguity about its role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It begins with an explicit trigger: 'USE THIS TOOL whenever the user asks to send the same token to multiple recipients...' and provides examples. It also gives clear alternatives, like using q402_pay in a loop for xlayer/stable, and explains conditions for trial vs multichain key scopes, sandbox mode, and wallet selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_bridge_gas_tankA

READ-ONLY GUIDANCE TOOL - Bridge Gas Tank live balance via MCP is not yet wired (requires owner-sig auth which is dashboard-bound until session-binding lands, same follow-up as q402_bridge_history). Tool returns static guidance: the LINK/native fee model, the 3-chain CCIP triangle (eth/avax/arbitrum), the canonical Gas Tank deposit address, and a dashboard pointer for the live balance and per-chain deposit detail. Use this to route a user to the right top-up flow; don't expect numbers in the response.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerAddressNoOwner EOA (0x address, optional - defaults to configured wallet).

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden and meets it. It discloses the read-only nature, the auth limitation (requires owner-sig auth, dashboard-bound), the static vs. live behavior, and what the response will and will not contain. This is a model of transparency for an unannotated tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with 'READ-ONLY GUIDANCE TOOL' to immediately set expectations. Every sentence earns its place, covering purpose, content, limitation, and usage. It avoids redundancy and is well-structured for agent parsing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description fully compensates by specifying exactly what the response contains (fee model, chain list, deposit address, dashboard pointer) and its limitations. It provides enough context for an agent to decide when to invoke this tool vs. alternatives, and to set user expectations correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 100% coverage for the only parameter, ownerAddress, with a clear pattern and description. The tool description does not add parameter-level detail, but since the schema fully documents it, the baseline of 3 is appropriate. The optionality and default behavior are already in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states this tool returns static guidance for the Bridge Gas Tank, not live data. It specifies the exact content: LINK/native fee model, 3-chain CCIP triangle, canonical deposit address, and dashboard pointer. It clearly distinguishes itself from live bridge tools like q402_bridge_history and q402_bridge_send by noting it is 'not yet wired' and returns no numbers.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use guidance: 'Use this to route a user to the right top-up flow.' It also states when-not/exclusions: 'don't expect numbers in the response' and explains that live balance is dashboard-bound until session-binding lands. It references the same follow-up as q402_bridge_history, providing a sibling context for the limitation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_bridge_historyA

READ-ONLY GUIDANCE TOOL - 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 → Agent tab → Bridge History.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerAddressNoOwner EOA (0x address, optional - defaults to configured wallet).

TDQS

A4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full transparency burden and exceeds it. It discloses that the tool intentionally surfaces as an error, requires owner-sig auth, is dashboard-bound, and details the future shape of results. This gives the agent complete awareness of the tool's current non-functional behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with 'READ-ONLY GUIDANCE TOOL' and the key limitation (not yet wired), but it includes a long future-shape specification that may be more than needed for a stub. Still, the structure is logical and every sentence contributes context, making it slightly verbose but not bloated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a stub tool with one optional parameter and no output schema, the description fully covers current behavior, intentional error surfacing, authentication context, and a concrete user-facing redirect. It also outlines the future response format, which is helpful for an agent planning around upcoming functionality. The only minor gap is the exact error message text, but it is not essential.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the single optional ownerAddress parameter, which already explains it defaults to the configured wallet. The description adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that this is a read-only guidance tool for bridge history, not yet wired in the release, and directs the user to a dashboard. It distinguishes itself from sibling bridge tools by focusing on history and explicitly noting it returns a pointer rather than actual history data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit usage guidance: until session-binding lands, point the user to the dashboard link and specific tab. It also references the live q402_bridge_send tool for the same follow-up context, helping an agent understand when to use this stub versus expecting real data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_bridge_quoteA

Quote the Chainlink CCIP fee for bridging USDC across the 3-chain triangle (eth/avax/arbitrum). Returns BOTH the LINK fee (~10% cheaper) and the native fee, so the agent can pick the cheaper path or surface both options to the user. Read-only; no auth required.

ParametersJSON Schema
NameRequiredDescriptionDefault
dstYesDestination chain (MUST differ from src; pool only routes inside the 3-chain triangle).
srcYesSource chain.
amountYesUSDC amount in raw 6-decimal units (e.g. '1000000' = 1 USDC). Integer string only.
destReceiverYesDestination receiver (0x 20-byte address). Same EOA on the destination chain.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full safety burden. It explicitly states 'Read-only; no auth required', which is a key behavioral disclosure. It also reveals return behavior (both LINK and native fee). While it doesn't discuss potential edge cases like rate changes, it provides solid transparency for a quote tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences: the first states purpose and scope, the second explains the output and safety. Every word earns its place, with no redundancy or fluff. It's front-loaded with the core action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is straightforward with four well-documented parameters and no output schema. The description covers purpose, output, and safety. It doesn't mention that quotes may be estimates or subject to change, but given the tool's simplicity and the rich sibling context, it's nearly complete. A 4 reflects one small gap: no explicit caveat about quote validity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description reinforces that amount refers to USDC and chains are limited to the triangle, but adds no extra parameter-level detail beyond what the schema already provides. It does not compensate for any gaps because there are none.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Quote') with a clear resource ('Chainlink CCIP fee for bridging USDC across the 3-chain triangle'). It explicitly names the three chains and distinguishes itself from siblings like q402_quote and q402_oft_quote by focusing on CCIP bridging fees and returning both LINK and native fee options.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: this tool is for quoting bridge fees, and it's read-only with no auth required. It also explains the benefit (picking the cheaper path). However, it does not explicitly state when not to use it or mention alternatives like q402_oft_quote, so it stops short of a full 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_bridge_sendA

Execute a Chainlink CCIP USDC bridge across the 3-chain triangle (eth/avax/arbitrum) on behalf of the user's server-managed Agentic Wallet (Mode C). Sandbox-by-default - returns a synthetic messageId unless sandbox: false is passed AND Q402_ENABLE_REAL_PAYMENTS=1 AND a live Multichain API key is configured. The server signs ccipSend with the Agent Wallet's encrypted PK, auto-funds source-chain gas from the user's Gas Tank, and debits both the auto- fund cost and the CCIP fee per the bridge's settled receipt. TWO-PHASE CONSENT - a LIVE bridge (sandbox: false) refuses to execute unless BOTH confirm: true AND a matching consentToken are set. Call it first WITHOUT consentToken to get a preview (src, dst, amount, fee token) plus a consentToken; show that to the user, get explicit approval, THEN re-call with sandbox: false, confirm: true, AND that consentToken. The token is re-derived from the bridge about to run, so the previewed bridge can't be swapped. Never fabricate a token. Recommended flow: q402_bridge_quote first → preview + confirm cost with the user → q402_bridge_send with sandbox: false, confirm: true, consentToken. Live mode needs a Multichain subscription; trial keys are rejected. If the bridge returns AGENT_WALLET_DELEGATED, clear the delegation first: server-managed Agent Wallets (Mode C / API key) use the Clear delegation button on the dashboard; local-key modes (Q402_PRIVATE_KEY set) can run q402_clear_delegation.

ParametersJSON Schema
NameRequiredDescriptionDefault
dstYesDestination chain (MUST differ from src).
srcYesSource chain.
amountYesUSDC amount in raw 6-decimal units (e.g. '1000000' = 1 USDC). Integer string, > 0.
confirmNoMUST be true to fire a LIVE bridge (ignored in sandbox) - set only after the user explicitly approved this exact bridge in chat. Omit (or false) on a live call to preview without moving funds.
sandboxNoSandbox mode (default true). Set to false for a real on-chain bridge.
feeTokenNoFee token. Default: LINK (~10% cheaper).
walletIdNoAgentic Wallet ID (from q402_agentic_info). Optional - defaults to the owner's default Agent Wallet when omitted.
maxFeeRawNoOptional client-side fee cap in raw 18-dec wei.
consentTokenNoTwo-phase consent token. Leave unset on the first live call to get a preview + token; re-call with confirm:true AND this token after the user approves. Bound to (src, dst, amount, feeToken) - re-derived server-side-of-the-tool and refused on mismatch.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does so richly. It discloses the sandbox default, conditions for live payments (Q402_ENABLE_REAL_PAYMENTS=1 and a live Multichain API key), the server signing process, auto-funding from the Gas Tank, debit behavior, two-phase consent mechanics, and the AGENT_WALLET_DELEGATED error resolution path.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but every sentence earns its place. It is front-loaded with the core purpose, then logically flows through sandbox behavior, signing/funding, consent flow, and error handling. The density is justified by the tool's complexity, and nothing feels redundant or promotional.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

It covers the execution flow, prerequisites, consent, error handling, and sibling tool references. However, there is no output schema and the description only partially specifies return values: it mentions a synthetic messageId for sandbox and the preview payload, but what a live successful call returns (e.g., messageId, receipt, status) is not explicitly stated.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Despite 100% schema coverage, the description adds significant meaning beyond field names. It explains the consentToken lifecycle (preview → re-call with token), how confirm interlocks with sandbox, that sandbox defaults to true, that feeToken defaults to LINK, and that walletId comes from q402_agentic_info.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Execute a Chainlink CCIP USDC bridge across the 3-chain triangle (eth/avax/arbitrum) on behalf of the user's server-managed Agentic Wallet (Mode C).' This clearly distinguishes it from sibling tools like payments or quotes, and the mention of Mode C adds precision.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides an explicit recommended flow: 'q402_bridge_quote first → preview + confirm cost with the user → q402_bridge_send with sandbox: false, confirm: true, consentToken.' It also explains when to call without consentToken (preview) and when to re-call, and points to q402_clear_delegation for a specific error case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_clear_delegationA

Clear the EIP-7702 delegation on a Q402 chain for the configured wallet. Call this when the user wants to reset a chain's delegation, OR to switch a wallet off the q402 rail so it can use the x402 (EIP-3009) rail on Base (a q402-delegated wallet can't settle x402). The next q402_pay on the same chain re-creates the delegation automatically, so don't clear right before a normal pay. Pair with q402_wallet_status / q402_agentic_info first to see which chains have an active delegation. Works in all three wallet modes: eoa (Q402_PRIVATE_KEY) and agentic-local (Q402_AGENTIC_PRIVATE_KEY) sign LOCALLY; agentic-server (Mode C) holds only a live apiKey and the server signs with the encrypted Agent Wallet key. Q402 sponsors the on-chain TX on every chain EXCEPT Ethereum, where the gas is billed to your Gas Tank. Two-phase consent: call once WITHOUT consentToken to get a preview + token (no broadcast), then re-call with the same args plus that consentToken to execute.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainYesWhich Q402 chain to clear the delegation on.
walletIdNoServer-managed Agent Wallet only (walletMode="agentic-server"). Lowercased Agent Wallet address when you hold more than one; omit to use your single/default wallet.
walletModeNoWhich wallet to clear. "eoa" = Q402_PRIVATE_KEY, "agentic-local" = Q402_AGENTIC_PRIVATE_KEY (both sign locally), "agentic-server" = server-managed Agent Wallet (apiKey only, no private key). Omit when only one mode is configured; required when several are.
consentTokenNoTwo-phase consent. Omit on the first call to get a needs_confirmation preview + consentToken (no broadcast); re-call with the SAME args plus this token to execute. Re-derived from the resolved chain + wallet.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and exceeds it: it discloses the two-phase consent flow (preview + token, then execute), wallet-mode signing differences, gas sponsorship per chain, and automatic delegation re-creation on next q402_pay.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense yet front-loaded: first sentence states purpose, subsequent sentences cover usage, exclusions, wallet modes, gas, and consent flow. No sentence is wasted.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is complex (two-phase consent, multiple wallet modes, chain-specific gas), and the description fully explains all mechanics despite no output schema. It is complete and self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, providing baseline 3. The description adds operational meaning beyond the schema, such as how walletMode relates to signing locations and the consentToken re-derivation from chain+wallet.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb+resource: 'Clear the EIP-7702 delegation on a Q402 chain for the configured wallet.' It clearly distinguishes from siblings by naming q402_pay, q402_wallet_status, and q402_agentic_info as related but different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to call ('reset a chain's delegation, OR to switch a wallet off the q402 rail so it can use the x402 rail'), when not to ('don't clear right before a normal pay'), and which tools to pair with first (q402_wallet_status / q402_agentic_info).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_doctorA

Run a Q402 health check - covers first-install onboarding AND ongoing diagnostics in one tool. Read-only, no API key required. Detects the current phase (first-install / needs-completion / live-check) and tailors output to it.

Use when the user says any of: "set up Q402", "verify Q402", "why isn't Q402 working", "Q402 status", "check Q402". This is the FIRST tool to call after install, BEFORE q402_pay or q402_balance - it tells the agent what state the user is in.

Output uses TWO instruction surfaces - agentInstructions (prescription for you, the AI - do NOT echo verbatim) and userInstructions (plain language array you CAN show the user as a numbered list). Always show userInstructions; consult agentInstructions privately to decide what to ask next + which recommendedActions to execute.

Multi-turn pattern the AI should follow when phase = first-install: (1) Tell user MCP is installed. (2) Ask one yes/no question: 'Want me to create your secrets file?' (3) On yes, execute recommendedActions IN ORDER - first the ensure-q402-dir shell action (use shellWindows on Windows), then the create-env-file write_file action. Then open the file in the user's editor (e.g. code for VS Code / Cursor / Cline, open on macOS, start on Windows, xdg-open on Linux). (4) Guide the user through getting an API key (free Trial at https://q402.quackai.ai/event OR paid Multichain at /payment) and pasting it into the file (in their editor - NEVER in chat). (5) Same for the private key. (6) Tell them to save + restart the MCP client (per-client restart verb is in agentInstructions). (7) Call q402_doctor again to verify.

Security policy carried in the response: AI MUST surface the securityNotice when first walking through setup. If the user pastes a private key directly in chat, DO NOT refuse - the exposure already happened. Help them by directing them to put it in the file themselves (via their editor), and inform them the chat history now contains the key (most clients store this locally, some sync to cloud) so they should treat the wallet as exposed if it holds valuables.

Live-check phase additionally returns per-scope quota, EIP-7702 delegation state per chain, relay reachability, and slot-mismatch warnings (e.g. Trial key in Multichain slot silently burns paid quota - surface this to the user).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses read-only behavior, no API key requirement, automatic phase detection, and the two output surfaces (agentInstructions, userInstructions). It also reveals the security policy for handling exposed private keys and warns about slot-mismatch scenarios in live-check mode. This is exceptionally transparent for a tool with no annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but well-structured, starting with the core purpose and then layering usage triggers, output surfaces, multi-turn flow, and security policy. Every section provides essential operational guidance for a complex diagnostic tool. It is not concise in word count, but the length is justified by the tool's multi-phase behavior and critical onboarding role.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description thoroughly explains what the tool returns: agentInstructions, userInstructions, recommendedActions, securityNotice, and phase-specific live-check diagnostics (quota, delegation, relay reachability, slot warnings). It also covers the multi-turn interaction pattern and security handling, making the tool fully understandable for an agent without needing external docs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. The description adds no parameter-specific details because there are none to explain. It instead explains how the output varies based on the detected phase, which is more relevant than any parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Run a Q402 health check' and explicitly states it covers both 'first-install onboarding AND ongoing diagnostics'. It further clarifies that it detects the current phase, distinguishing it from siblings like q402_pay, q402_balance, and q402_wallet_status. The purpose is unambiguous and differentiates from other q402_* tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit trigger phrases ('Use when the user says any of: "set up Q402", "verify Q402", ...'), declares itself the 'FIRST tool to call after install, BEFORE q402_pay or q402_balance', and gives detailed multi-turn instructions for the first-install phase. This clearly tells the agent when and how to use the tool, including what to do in subsequent turns.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_createA

Create a Q402 Gasless Escrow (non-custodial, EIP-7702). Publishes a pending record and returns an escrowId - MOVES NO FUNDS. Pass walletId (one of YOUR Agent Wallets) to make that wallet the buyer/funder: the server then signs the gasless lock on its behalf (no local key), so q402_escrow_lock funds it straight away. Omit walletId to make yourself (the apiKey owner) the buyer, funded with your own key. Live on BNB mainnet (USDC/USDT). Optional arbiter enables disputes; without one it's release-or-timeout-refund only. Releasing an Agent-Wallet escrow needs the owner's approval in the dashboard.

ParametersJSON Schema
NameRequiredDescriptionDefault
memoNo
chainYesChain with a deployed escrow vault (bnb).
tokenYes
amountYesHuman-readable decimal, e.g. "5.00".
sellerYesAddress paid on release.
arbiterNoOptional neutral third party who can resolve a dispute (not buyer/seller).
walletIdNoOptional: an Agent Wallet address (yours) to fund the escrow gaslessly; the server signs the lock for it.
releaseDaysNoDays until the buyer can timeout-refund (default 7, max 90).

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It clearly states the tool moves no funds, creates a pending record, server-side signing implications, and the release approval nuance for Agent-Wallet escrows. It also mentions optional arbiter changes dispute resolution, and timeout-refund behavior. This is rich behavioral disclosure beyond basic mutation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is dense but every sentence earns its place: purpose, funding options, chain/token context, arbiter behavior, and approval nuance. It front-loads the core action and zero-funds fact, then logical detail. No fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description clarifies return (escrowId) and pending state. It covers creation lifecycle, funding mechanism, multi-party roles (buyer, seller, arbiter), chain and token constraints, and release approval requirement. For a complex escrow creation tool with 8 params, this is complete and actionable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 75% (6 of 8 params described), so baseline is 3 but description adds significant semantics for walletId (buyer/funder, server signs gasless lock) and explains the meaning of arbiter (dispute resolution vs release-or-timeout-refund only). It also clarifies amount as human-readable decimal in schema, and description reinforces chain specifics. However, memo and releaseDays get no additional color beyond schema, so not a 5.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb+resource: 'Create a Q402 Gasless Escrow'. It specifies non-custodial, EIP-7702, publishes a 'pending' record, returns escrowId, and explicitly states 'MOVES NO FUNDS'. This distinguishes it from siblings like q402_escrow_lock/release/refund which act on an existing escrow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly explains when to use walletId vs omit it, how that affects funding and signing. Also specifies chain and token availability (BNB mainnet USDC/USDT) and optional arbiter behavior. It differentiates from other escrow tools by noting the lock step follows ('funds it straight away'), and mentions dashboard approval for Agent-Wallet release, providing clear context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_disputeA

A party (buyer or seller) disputes an open escrow (requires the escrow named an arbiter, before the release deadline). The arbiter then resolves off-tool. Confirm with the user first (confirm:true).

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmYesMUST be true, only after the user explicitly confirmed this exact escrow action in chat.
escrowIdYesThe esc_... id from escrow_create.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the confirm:true requirement, the precondition of an arbiter and deadline, and that the arbiter resolves off-tool afterward. This provides a clear behavioral picture, though it does not detail the escrow's post-dispute state.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with the primary action. Every clause adds necessary context (party, arbiter, deadline, off-tool resolution, confirmation), with no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter action, the description adequately covers prerequisites, the action itself, and the follow-up resolution process. The absence of an output schema is not a gap because the description explains the intended flow.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and both parameters are described in detail. The description re-emphasizes confirm:true and indirectly references escrowId provenance, but adds minimal semantic value beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: a party (buyer or seller) disputes an open escrow. It adds specific constraints (requires arbiter, before release deadline) that distinguish it from related escrow tools like release or refund, making the purpose immediately clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use: when an escrow is open, has an arbiter, and is before the release deadline. It also mandates user confirmation first. It does not explicitly name alternative tools, but the context is strong enough to guide selection without ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_lockA

Fund a pending escrow: the BUYER gaslessly locks the amount into the vault via EIP-7702 (Q402 relays + sponsors gas). MOVES REAL FUNDS. If the escrow is funded by an Agent Wallet (created with walletId), the server signs it for you - no local key needed. Otherwise requires Q402_PRIVATE_KEY = the buyer's key. ALWAYS confirm the exact amount/seller/chain with the user before calling (confirm:true).

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmYesMUST be true, only after the user explicitly confirmed this exact escrow action in chat.
escrowIdYesThe esc_... id from escrow_create.

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden and excels: it warns 'MOVES REAL FUNDS', explains gasless sponsorship via EIP-7702, details key requirements (server signs for Agent Wallet, otherwise Q402_PRIVATE_KEY), and mandates user confirmation. This is exceptionally transparent for a financial mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a bit long but front-loaded with purpose and every sentence contributes critical information (mechanism, real funds, key requirements, confirmation). The use of caps and clear segmentation helps scanning, though it could be slightly tightened.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the moderate complexity (funding escrow with gasless flow) and lack of output schema, the description covers purpose, mechanism, prerequisites, and mandatory confirmation. It doesn't state return values, but that's not essential here; overall it's sufficiently complete for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and already describes both params. The description adds value by explaining that escrowId comes from escrow_create and clarifying that confirm:true must only be set after explicit user confirmation of the exact action, reinforcing the safety intent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear, specific verb ('Fund') and resource ('pending escrow'), plus the mechanism ('gaslessly locks the amount into the vault via EIP-7702'). It distinguishes from sibling escrow tools like release, refund, and dispute by focusing on the funding step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies when to use this tool (after escrow_create, before release/refund) and provides an explicit safety rule: 'ALWAYS confirm the exact amount/seller/chain with the user before calling (confirm:true)'. It doesn't explicitly mention alternatives, but the sibling names make that clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_refundA

Permissionlessly refund a locked escrow to the BUYER - only valid AFTER the release deadline (or, if disputed, after the arbiter resolve window). Confirm with the user first (confirm:true).

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmYesMUST be true, only after the user explicitly confirmed this exact escrow action in chat.
escrowIdYesThe esc_... id from escrow_create.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that the action is permissionless, time-limited, and requires user confirmation. It doesn't detail side effects or error conditions, but the key behavioral traits are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with the action and key constraints. Every word earns its place; no fluff or redundant details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter tool with no output schema, the description covers the essential when, what, and confirmation steps. It could mention success/error behavior, but the overall context is sufficient for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description reinforces the confirm parameter's meaning ('confirm with the user first') but doesn't add information beyond the schema's own clear descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'refund' with a clear resource ('locked escrow') and beneficiary ('to the BUYER'). It also states the timing condition ('after the release deadline'), distinguishing it from sibling tools like escrow_release or escrow_dispute.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit timing constraints ('only valid AFTER the release deadline...') and a confirmation requirement ('Confirm with the user first'). It doesn't explicitly mention sibling alternatives, but the conditions are clear enough for an agent to know when to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_releaseA

BUYER releases a locked escrow to the SELLER (buyer-signed, gasless). MOVES REAL FUNDS irreversibly. Confirm with the user first (confirm:true).

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmYesMUST be true, only after the user explicitly confirmed this exact escrow action in chat.
escrowIdYesThe esc_... id from escrow_create.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly warns that the tool 'MOVES REAL FUNDS irreversibly' and requires user confirmation, both crucial for a high-stakes operation. It does not cover failure modes or auth details, but the primary risk is clearly disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, each purposeful: the action/actor, the irreversibility warning, and the confirmation requirement. No filler or repetition, and critical information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a simple 2-parameter tool with no output schema. The description covers what it does, who does it, the irreversible nature, and the necessary confirmation step. The sibling tool list provides enough surrounding context for an agent to select it correctly. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear descriptions, so the baseline is 3. The description adds context by tying 'confirm' to a real-world precondition ('Confirm with the user first') and by qualifying 'escrowId' as a 'locked escrow'. This reinforces behavioral meaning beyond the schema's boolean const.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: 'BUYER releases a locked escrow to the SELLER'. It names a specific verb, resource, and actor, and differentiates from sibling tools like escrow_refund and escrow_dispute by specifying the buyer-signed, gasless release direction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description conveys the exact context: this is the buyer's action to release funds to the seller. It also provides a critical usage instruction: 'Confirm with the user first (confirm:true)'. It does not explicitly mention when not to use or compare to alternatives, but the actor/action pairing gives clear contextual guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_escrow_statusA

Read a Q402 escrow's current state (pending/open/disputed/released/refunded/expired) + parties, amount, and tx hashes.

ParametersJSON Schema
NameRequiredDescriptionDefault
escrowIdYesThe esc_... id from escrow_create.

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of disclosing behavior. It explicitly says 'Read', indicating a non-mutating operation, and lists the returned content (state, parties, amount, tx hashes). This covers the key safety aspect (no side effects) for a status query, though it omits details like authentication or error cases.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, tightly crafted sentence that front-loads the verb and resource, enumerates valid states, and lists the key returned fields. Every word adds value; there is no verbosity or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (one parameter, no output schema), and the description conveys the essential return values (state, parties, amount, tx hashes) as well as the possible state enums. It is complete enough for an agent to invoke and interpret the result, though it does not explicitly detail the response structure (e.g., JSON shape) or error behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%: the sole parameter 'escrowId' is fully described as 'The esc_... id from escrow_create.' The description does not add additional parameter-level meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Read' and clearly identifies the resource (a Q402 escrow's current state), listing the possible state values and the contained data (parties, amount, tx hashes). This makes it immediately distinguishable from sibling escrow mutation tools like q402_escrow_release, q402_escrow_refund, and q402_escrow_dispute.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is the read-only counterpart to the escrow lifecycle tools, but it does not explicitly state when to prefer this over alternatives or mention any preconditions (e.g., 'use this before calling release/refund'). The context from sibling names helps, but the description itself offers no direct guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_memory_summaryA

Summarize the user's agent treasury activity over a window (24h / 7d / 30d / all): total USD spent, tx count, spend broken down by chain and by source (send / recurring / redstone-trigger / yield / request / batch), the top vendors paid, active scheduled payouts and the next fire time, open vs paid payment requests, open vs disputed escrow, and the observable failures/holds (recurring rules that hit their cap or errored, disputed escrows). Use for 'summarize my treasury', 'why did my balance drop yesterday' (window:24h), or 'what did we spend this week'. Read-only and free: any live API key (Trial or Multichain).

ParametersJSON Schema
NameRequiredDescriptionDefault
windowNoTime window. Default 7d.
walletIdNoOptional lowercased Agent Wallet address.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses read-only and free access with any live API key, and details the exact data returned including failure/hold information. This is substantial transparency for a read-only summary tool, though it omits specifics like rate limits or error behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single efficient sentence listing all key outputs, followed by a usage sentence with concrete examples. Every phrase adds value; no filler or repetition. The structure front-loads the action and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description enumerates the full set of returned information, making it easy for an agent to predict results and decide if this tool fits a query. It also covers read-only access and API key requirements, so the context is complete for a summary tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear parameter descriptions (window enum with default 7d, walletId optional lowercased address). The description reinforces the window choices with usage examples but does not add meaning beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool summarizes treasury activity with a specific verb ('Summarize') and resource ('treasury activity'), and it enumerates detailed outputs (USD spent, tx count, breakdowns, vendors, payouts, escrow, failures). This distinguishes it from sibling tools like q402_agent_spend_report or q402_balance.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit example queries are provided: 'summarize my treasury', 'why did my balance drop yesterday' (with window:24h), and 'what did we spend this week'. This gives clear context for when to use it, though it does not explicitly mention when not to use it or name alternative tools for overlapping scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_oft_historyA

READ-ONLY GUIDANCE TOOL - USDT0 (LayerZero OFT) 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_oft_send). Returns a dashboard pointer and intentionally reports implemented:false so an LLM does not read the prose as an empty result. Future shape (finalized): most-recent-first list of up to 50 OFT bridges with guid, source/destination chains, USDT0 amount, native fee paid, and a LayerZero Scan link. For USDC/CCIP use q402_bridge_history.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerAddressNoOwner EOA (0x address, optional - defaults to configured wallet).

TDQS

A4.3/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description fully carries the transparency burden and does so thoroughly: it discloses that the tool is a read-only guidance stub, returns implemented:false intentionally, requires owner-sig auth, and will not return actual history. It even explains the 'implemented:false' design decision to prevent LLM confusion, going beyond basic expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than a simple stub, but every sentence carries necessary information: status, auth, return behavior, future shape, and the sibling alternative. The front-loaded 'READ-ONLY GUIDANCE TOOL' immediately sets expectations, though the prose could be slightly tighter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an intentionally non-implemented tool, the description covers all critical context: current behavior, auth constraints, future return schema, and the correct sibling for USDC/CCIP. It does not specify the exact dashboard pointer shape, but that is not essential for a guidance stub and the description is otherwise complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already has 100% description coverage for the single optional ownerAddress parameter, including format and default behavior. The description adds no parameter-specific detail, so it doesn't go beyond what the schema provides, but the schema is sufficient, warranting the baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as a read-only guidance stub for USDT0 OFT bridge history, explicitly stating it is 'not yet wired' and reports implemented:false with a dashboard pointer. It distinguishes itself from q402_bridge_history by directing USDC/CCIP users there, so the purpose is both specific and differentiated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context on when not to rely on it (not yet wired), notes the auth requirement (owner-sig, dashboard-bound), and gives an explicit alternative for USDC/CCIP ('use q402_bridge_history'). It doesn't explicitly state 'use this tool only for status discovery,' but that is strongly implied by the guidance-tool framing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_oft_quoteA

Quote the LayerZero fee for bridging USDT (USDT0) across the OFT set (eth/arbitrum/mantle/monad/xlayer). Returns the native messaging fee and the amount delivered on the destination. Read-only; no auth. For USDC use q402_bridge_quote (CCIP) instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
dstYesDestination chain (MUST differ from src).
srcYesSource chain.
amountYesUSDT0 amount in raw local-decimal units (6-decimal; '1000000' = 1 USDT0). Integer string only.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the burden; it discloses the operation is read-only with no auth and describes the return values (native messaging fee and delivered amount). It does not cover error conditions or rate limits, but this is sufficient for a quote tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences: purpose, return, and alternative/read-only. Front-loaded with the core function, no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema, the description appropriately states the return information. It covers the token, chain set, and read-only nature, leaving little ambiguity for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptive parameter text for src/dst/amount, so the description need not add parameter detail; it doesn't. The description doesn't delve into parameter semantics beyond the schema, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States the tool quotes LayerZero fees for USDT/USDT0 bridging across the OFT set, a specific verb+resource. It clearly distinguishes itself from sibling q402_bridge_quote for USDC.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly directs USDC users to q402_bridge_quote instead, and the description implies use for USDT OFT quotes. Also notes read-only and no auth, providing context for when it's appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_oft_sendA

Bridge USDT (USDT0) across chains (eth/arbitrum/mantle/monad/xlayer) via LayerZero OFT, from the Agent Wallet to the SAME wallet's address on the destination. Mode C (server-managed wallet). Sandbox-by-default; a live bridge needs confirm:true + consentToken. For USDC use q402_bridge_send (CCIP).

ParametersJSON Schema
NameRequiredDescriptionDefault
dstYesDestination chain (MUST differ from src).
srcYesSource chain.
amountYesUSDT0 amount in raw local-decimal units (6-decimal; '1000000' = 1 USDT0).
confirmNoMust be true for a live bridge.
sandboxNoSandbox mode (default true).
walletIdNoOptional Agent Wallet id; defaults to the owner's default wallet.
maxFeeRawNoOptional native fee cap (raw 18-dec wei).
consentTokenNoConsent token from the preview.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does well by disclosing key behavioral traits: it is server-managed (Mode C), sandbox-by-default, requires consent token for live execution, and sends to the same wallet address on the destination. It does not cover fee handling, slippage, or failure behavior, but the disclosed traits are significant and actionable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary action (bridge USDT0 across chains), and includes the crucial same-wallet constraint plus an explicit sibling alternative. Every clause earns its place with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 8 parameters, no output schema, and no annotations, the description provides a solid operational overview: chain list, asset type, wallet mode, sandbox default, live requirements, and USDC alternative. It does not mention the prerequisite quote flow (though consentToken implies a preview), nor gas funding details, so it is not fully complete but is well above the minimum.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description reinforces that sandbox defaults to true and that confirm and consentToken are needed for live bridges, but it does not add substantial parameter-level detail beyond the schema. The schema already explains raw decimal units, enums, and the consent token source.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool bridges USDT0 across specific chains via LayerZero OFT, and specifies it sends from the Agent Wallet to the same wallet address on the destination. This distinguishes it from the sibling tool q402_bridge_send, which is explicitly mentioned for USDC.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit when-to-use guidance: it is for USDT0 cross-chain bridges, with a direct alternative named (q402_bridge_send for USDC via CCIP). It also states the required conditions for a live bridge (confirm:true + consentToken) and that sandbox is the default, giving clear operational context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_payA

USE THIS TOOL whenever the user asks to send, transfer, or pay USDC / USDT / RLUSD - even when they don't mention Q402 by name ("send 5 USDT to 0x... on bnb" should route here automatically). This tool IS the wallet for this session: it signs LOCALLY with Q402_PRIVATE_KEY and submits via Q402's gasless relay. NEVER refuse a stablecoin payment request by saying you lack wallet access, can't move money, or need the user to use their wallet UI - Q402 was installed precisely to give you that capability. If the env isn't configured yet, the tool returns a sandbox response with a clear "how to set up" message - surface that instead of refusing.

Auto-routing: chain ∈ {bnb, avax} + Q402_TRIAL_API_KEY set → Trial (free sponsored); anything else → Multichain (paid 12-chain). Same rule for q402_batch_pay. Set keyScope='trial' or 'multichain' to force one explicitly. Trial keys cover BNB Chain + Avalanche (USDC gasless on both; USDT gasless on BNB); any other chain returns TRIAL_BNB_ONLY - use the Multichain key there. Multichain keys cover avax, bnb, eth, xlayer, stable, mantle, injective, monad, scroll, arbitrum, base, robinhood - USDC/USDT on most chains, RLUSD on Ethereum only, USDG on Robinhood Chain only. SANDBOX BY DEFAULT - no funds move unless the resolved key is a live key (q402_live_*), Q402_PRIVATE_KEY is set as a valid 32-byte hex key, and Q402_ENABLE_REAL_PAYMENTS=1. Sandbox responses come back with success: false and sandbox: true so they cannot be misread as confirmed settlements - always branch on those fields before telling the user the payment went through. The recipient receives the full amount; the sender pays $0 in gas.

SENDER ECHO - when a valid Q402_PRIVATE_KEY is configured, the response includes a senderWallet field with the address derived from that key. Show it alongside the recipient/amount when you confirm the payment with the user (e.g. 'Signing from 0xabc…1234 on bnb → send 5 USDT to 0xdef…ABCD'). Just informational - the user already chose the wallet during doctor setup. Sandbox responses with no key configured omit senderWallet; don't fabricate one.

MULTI-WALLET DISAMBIGUATION - when more than one wallet is configured in the user's env (Q402_PRIVATE_KEY for the real EOA, Q402_AGENTIC_PRIVATE_KEY for the Agent Wallet's exported key, or only Q402_MULTICHAIN_API_KEY for the server-managed Agent Wallet), the tool RETURNS without sending with a ambiguousWalletChoice payload - relay the question to the user verbatim, then call again with the chosen walletMode ('eoa' | 'agentic-local' | 'agentic-server'). Do NOT pick a wallet on the user's behalf when multiple are available.

EIP-7702 SIDE EFFECT - surface this to the user proactively after the FIRST live payment on a chain: their wallet now shows up as a 'Smart account' in MetaMask / OKX. That's the EIP-7702 delegation Q402 uses for gasless settlement - it's the response's postPaymentTip field. Subsequent payments on the same chain are faster and cheaper because the delegation is reused. Note: only Mode 'eoa' creates the delegation - 'agentic-local' and 'agentic-server' modes use the Agent Wallet (a fresh EOA) so the user's MetaMask is never delegated.

If the user EVER reports that native gas tokens (BNB / ETH / AVAX / etc.) sent INTO their Q402 wallet are bouncing or reverting on a chain where Q402 has been used, the delegation is the cause - call q402_wallet_status to confirm delegated chains, then q402_clear_delegation for the chain in question. Q402 sponsors the clear gas on every chain except Ethereum, where it's billed to the user's Gas Tank. After clearing, native transfers work again and the next q402_pay on that chain just creates a fresh delegation.

ALWAYS get explicit user confirmation of the exact recipient address, amount, chain, and token in conversation immediately before calling this tool.

TWO-PHASE CONSENT: confirm:true alone does NOT send. Call this tool first WITHOUT consentToken - it returns status="needs_confirmation" with a preview of the exact payment and a consentToken, and moves no money. Relay that preview to the user, get their explicit yes, then re-call with the SAME args plus that consentToken to execute. The token is re-derived from the params about to run, so a previewed payment can't be swapped for a different one.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesRecipient EVM address (0x + 40 hex).
railNoSettlement rail (Base only). "q402" (default) = gasless EIP-7702 (USDC+USDT). "x402" = Coinbase x402 standard (EIP-3009), Base USDC only, agentic-server only. Leave unset elsewhere.
chainYesTarget chain.
tokenYesToken to send. USDC / USDT supported on most chains. RLUSD (Ripple USD, NY DFS regulated, decimals 18) is Ethereum-only. Q (QuackAI, decimals 18) is BNB-only. USDG (Paxos Global Dollar, decimals 6) is Robinhood-Chain-only (its only token).
amountYesHuman-readable decimal amount, e.g. "5.00".
confirmYesMUST be true and only set after the user has confirmed this exact payment in chat. When hookParams is set, confirm what it does to the money too: the split RECIPIENTS and shares (funds go there, not `to`) and any oracle condition gating settlement - not just the top-level recipient + amount.
keyScopeNoWhich API key to use. "auto" (default) picks Trial for BNB + Avalanche when Q402_TRIAL_API_KEY is set, Multichain otherwise. "trial" forces the BNB + Avalanche sponsored key. "multichain" forces the paid 12-chain key.
walletIdNoServer-managed Agent Wallet only (walletMode="agentic-server"). Lowercased Agent Wallet address selecting which of the user's wallets to spend from when they hold more than one (max 10 per owner). Omit to use the user's default wallet. Ignored for the other walletMode values since those modes carry their own signing key.
hookParamsNoQ402 Hook params (server-managed Agent Wallet only). recipientAgentId (ReputationGate), condition (ConditionalOracle price/time gate), or splits (MultiPayeeSplit fan-out, bps sum 10000).
walletModeNoWhich wallet to spend from. "eoa" = user's real MetaMask EOA (Q402_PRIVATE_KEY). "agentic-local" = Agent Wallet exported key (Q402_AGENTIC_PRIVATE_KEY). "agentic-server" = server-managed Agent Wallet (Q402 holds the key; only the apiKey is needed). When MULTIPLE wallets are configured the tool refuses without this arg and returns ambiguousWalletChoice for the user to pick.
consentTokenNoTwo-phase consent. Omit on the FIRST call to get a needs_confirmation preview plus a consentToken (no funds move); re-call with the SAME args plus this token to execute. Re-derived from the payment params, so a previewed payment cannot be swapped for a different one. confirm:true alone does NOT send.

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does so comprehensively: it discloses sandbox-by-default behavior with 'success: false' and 'sandbox: true' response markers, two-phase consent via consentToken, multi-wallet ambiguity with ambiguousWalletChoice, and the EIP-7702 delegation side effect that changes the user's wallet display. It also clarifies that confirm:true alone does not send funds.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but structured with clear headings (SENDER ECHO, MULTI-WALLET DISAMBIGUATION, EIP-7702 SIDE EFFECT, TWO-PHASE CONSENT) and is front-loaded with the most critical use directive. Every paragraph addresses a distinct behavioral or safety aspect needed for a money-moving tool, so the length is justified and not wasteful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex payment tool with no output schema, the description covers all key response variants (sandbox with success:false/sandbox:true, preview with needs_confirmation, senderWallet echo, ambiguousWalletChoice, postPaymentTip). It also enumerates prerequisites (Q402_TRIAL_API_KEY, Q402_PRIVATE_KEY, Q402_ENABLE_REAL_PAYMENTS) and edge cases, making the tool self-sufficient for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although the schema already describes all 11 parameters (100% coverage), the description adds significant meaning: it explains keyScope's auto-selection logic, walletMode's multi-wallet disambiguation, consentToken's re-derivation and two-phase flow, and confirm's requirement to also validate splits/conditions in hookParams. It also adds critical token/chain restrictions (RLUSD on Ethereum, Q on BNB, USDG on Robinhood) beyond the enum lists.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence is an explicit directive: 'USE THIS TOOL whenever the user asks to send, transfer, or pay USDC / USDT / RLUSD' and explicitly names the tool as the session wallet that signs locally and submits via Q402's gasless relay. It distinguishes from siblings by naming alternative tools like q402_batch_pay, q402_wallet_status, and q402_clear_delegation for related but distinct actions, and details supported chains/tokens.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit routing rules ('Auto-routing: chain ∈ {bnb, avax} + Q402_TRIAL_API_KEY set → Trial... anything else → Multichain') and when-not-to-use guidance: if native gas tokens bounce, call q402_wallet_status and q402_clear_delegation instead. It also tells the agent never to refuse payment requests and to surface sandbox setup messages when env isn't configured, leaving no ambiguity about when to invoke this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_quoteA

Compare gas costs and supported tokens across the 12 chains Q402 relays for (avax, bnb, eth, xlayer, stable, mantle, injective, monad, scroll, arbitrum, base, robinhood). Returns the full chain × token matrix unconditionally - this tool does not read any API key, so it can't filter by trial vs multichain scope. When the caller intends to settle with a Trial API Key, treat any row outside BNB Chain + Avalanche as informational only (q402_pay returns TRIAL_BNB_ONLY for those). Includes RLUSD on Ethereum. Read-only - no API key needed, no funds move. Use this before q402_pay so the user can see what's available and pick a chain.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoOptional chain filter; omit to compare all 12.
tokenNoOptional token filter. RLUSD (Ripple USD) is Ethereum-only - passing it narrows the quote to chain="eth". USDG (Paxos Global Dollar) is Robinhood-Chain-only - passing it narrows the quote to chain="robinhood".
amountYesHuman-readable decimal amount, e.g. "5" or "50.00".

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden and does so thoroughly: discloses read-only nature, no API key needed, no funds move, unconditional full matrix return, inability to filter by trial scope, and the q402_pay TRIAL_BNB_ONLY behavior. This goes beyond the schema and annotations to give critical operational expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Though longer than a two-sentence description, every sentence adds essential information: purpose, chain list, return behavior, trial caveat, RLUSD note, safety, and usage placement. It is front-loaded with the primary action and contains no filler, earning its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description compensates well by explaining the return value (full chain × token matrix), including RLUSD, and the trial-account implications. It also covers prerequisites (none), side effects (none), and integration with q402_pay, making the tool fully self-contained for correct invocation and interpretation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and parameter descriptions are already rich with enums and special narrowing notes for RLUSD and USDG. The description adds context for trial-row interpretation but does not materially extend parameter semantics beyond what the schema provides, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool compares gas costs and supported tokens across the 12 chains Q402 relays, with the chain list enumerated. It distinguishes itself from sibling tools by explicitly positioning this as the quote-before-pay comparison tool, unlike q402_pay or q402_bridge_quote.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says to use this before q402_pay so the user can see what's available and pick a chain. It also explains the trial-vs-multichain scope limitation and directs the caller to treat rows outside BNB/Avalanche as informational when a Trial API Key is intended. Does not explicitly contrast with sibling quote-like tools, but provides clear when-to-use context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_receiptA

Look up a Q402 Trust Receipt by its rct_… receiptId and return the settlement record + a locally-verified ECDSA boolean (the tool re-runs the same canonical-JSON + EIP-191 recovery the receipt page does in the browser). Read-only; no API key required. Use after q402_pay to give the user a shareable verified-by-Q402 URL, or to independently verify a receipt id someone shared with you. receiptId is required; passing only txHash returns notFound (tx → receiptId lookup is reserved for a future release).

ParametersJSON Schema
NameRequiredDescriptionDefault
txHashNoReserved for a future tx → receipt index. Today this is unimplemented and the tool returns notFound when only txHash is provided. Pass receiptId instead.
receiptIdNoReceipt id (rct_ + 24 hex chars). Returned by q402_pay; also visible at the end of any /receipt/ URL. This is the only path that resolves today.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses read-only behavior ('Read-only; no API key required'), explains the internal verification process ('re-runs the same canonical-JSON + EIP-191 recovery'), and warns about the unimplemented txHash path. It does not describe error formats or rate limits, but the essential behavioral traits are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences plus a parenthetical, front-loaded with the main purpose. Every sentence provides necessary information: purpose, usage context, parameter requirement, and behavioral caveat. No redundant or filler content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 parameters, no output schema), the description fully covers what the agent needs to know: what it does, when to use it, what to pass, and what it returns (settlement record + boolean). It even mentions the future txHash lookup. No significant gaps for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for both parameters. The tool description adds crucial value by explicitly stating 'receiptId is required' (despite schema not marking it required) and explaining that txHash is unimplemented and will return notFound. This goes beyond the schema and helps the agent choose the correct parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Look up a Q402 Trust Receipt by its rct_… receiptId and return the settlement record + a locally-verified ECDSA boolean'. It identifies the specific resource (Q402 Trust Receipt) and the action (look up), distinguishing it from sibling tools like q402_pay (which creates) and q402_balance (which queries balances).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use: 'Use after q402_pay to give the user a shareable verified-by-Q402 URL, or to independently verify a receipt id someone shared with you.' It also clearly says that passing only txHash returns notFound, implying receiptId is the correct path. However, it does not name alternative tools for exclusion, though it is contextually clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_cancelA

Cancel an active recurring-payment rule on the Agent Wallet. Takes a ruleId (from q402_recurring_list). Cancel is immediate - the rule will not fire again. Authenticated by the configured Multichain API key. Idempotent: cancelling an already-cancelled rule returns 409 with a clear message. Use this whenever the user says 'stop my recurring payment to X' - call q402_recurring_list first to find the matching ruleId, then call this with that id.

ParametersJSON Schema
NameRequiredDescriptionDefault
ruleIdYesRule id from q402_recurring_list. Required.
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses immediate cancellation, that the rule will not fire again, authentication via the Multichain API key, and idempotency with a 409 response for already-cancelled rules. This is rich behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences pack all essential info: action, parameter source, behavior, auth, idempotency, and usage workflow. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description covers purpose, precondition (call list first), behavioral details, authentication, and an error case. It is self-contained and sufficient for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with clear parameter descriptions. The description only repeats the ruleId source (from q402_recurring_list) and adds no new parameter-specific meaning beyond what the schema already provides. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Cancel an active recurring-payment rule on the Agent Wallet,' with a specific verb and resource. It also distinguishes from siblings by emphasizing immediate cancellation, unlike pause/resume.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs when to use: 'Use this whenever the user says stop my recurring payment to X' and provides a workflow to call q402_recurring_list first. However, it doesn't mention alternatives like pause or resume, so it lacks explicit exclusion guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_createA

Author a new recurring-payment rule on the user's Agent Wallet. Single-recipient (use the dashboard for multi-recipient payroll). Pick a cadence - hourly:N, daily, weekly:{day}, monthly:N, or monthly:last - and a recipient + amount + chain + token. Authenticated by the configured Multichain API key; no private key required. Recurring requires the paid Multichain subscription on EVERY chain including bnb - trial keys are rejected at create time with MULTICHAIN_REQUIRED and should keep using q402_pay for one-shot Trial sends. Each fire is bounded server-side by BOTH the wallet's perTxMax AND its dailyLimit - a rule's daily total reserves against the same daily bucket as manual sends (the scheduler skips the fire if the bucket can't cover it), so scheduled rules can't outrun the dashboard caps. This tool also enforces your local Q402_MAX_AMOUNT_PER_CALL + Q402_ALLOWED_RECIPIENTS rails at create time. The user can stop a rule any time via q402_recurring_cancel.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoDefault 'bnb'. Recurring requires the paid Multichain subscription on EVERY chain (BNB included) - trial keys are rejected with MULTICHAIN_REQUIRED.
labelNoOptional human label (≤64 chars).
tokenNoDefault 'USDT'. USDG (Paxos Global Dollar) is Robinhood-Chain-only. All peg USD-1.
amountYesRequired. Per-fire amount as decimal string (e.g. "1.5").
confirmYesREQUIRED. Must be literally `true`. Recurring rules schedule future on-chain payments without per-fire user prompts, so the agent must get an explicit user yes BEFORE setting `confirm: true` and calling this. Same guard q402_pay / q402_batch_pay use on one-shot sends.
walletIdNoOptional. Defaults to default wallet on server.
frequencyYesRequired. "hourly:N" (N=1..23), "daily", "weekly:{day}", "monthly:N", or "monthly:last".
recipientYesRequired. 0x-prefixed 20-byte recipient address.
cancelWindowHoursNoOptional advance-notice window in hours. 0 = no alert, fires at the next slot. Defaults to 0.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it delivers: discloses subscription requirements per chain, trial-key rejection error (MULTICHAIN_REQUIRED), server-side caps (perTxMax, dailyLimit) and how they interact with the daily bucket, local rails (Q402_MAX_AMOUNT_PER_CALL, Q402_ALLOWED_RECIPIENTS), and the API key auth model. This is far more transparent than typical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, dense paragraph that front-loads the core action (author a recurring rule) and then systematically covers alternatives, requirements, limits, and cancellation. Every sentence contributes essential information with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool complexity (9 params, mutation, no output schema), the description covers purpose, alternatives, error conditions, scheduling behavior, server-side limits, and local policy enforcement. It is sufficiently complete for an agent to select and invoke it safely without needing additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value beyond the schema by illustrating cadence syntax, emphasizing the confirm:true requirement with explicit user consent, and explaining the paid-subscription rule for every chain. These examples and constraints clarify intent beyond the field-level descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Author a new recurring-payment rule on the user's Agent Wallet.' It clearly distinguishes this from sibling tools (q402_recurring_cancel, q402_recurring_list, etc.) by defining the create action and noting single-recipient scope versus the dashboard for multi-recipient payroll.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit usage guidance: 'use the dashboard for multi-recipient payroll' and 'trial keys ... should keep using q402_pay for one-shot Trial sends.' It also points to q402_recurring_cancel for stopping rules, giving clear context and exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_firesA

Read the past-fire history of a specific recurring-payment rule. Returns up to 50 entries (newest first), each with the timestamp, scheduled slot, total USD amount that settled, on-chain tx hashes, and a partial-failure flag if some recipient rows didn't make it. Use this when the user asks 'when was the last fire?', 'did Friday's payout go out?', 'how much has rule X spent?', or before claiming a fire is missing. Authenticated by the configured Multichain API key. Read-only - does not trigger or modify anything. Call q402_recurring_list first to find the ruleId.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of fires to return (1-50, newest first). Defaults to 50.
ruleIdYesRule id from q402_recurring_list. Required.
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully discloses the read-only and non-mutating nature ('does not trigger or modify anything'), mentions authentication via API key, and describes the return payload structure including the partial-failure flag. This exceeds typical transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is reasonably concise and front-loaded with the core purpose, followed by usage prompts, auth, and return details. The auth sentence is somewhat generic but still earns its place for transparency. No superfluous content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description fully explains what is returned (up to 50 entries, newest first, with timestamp, USD amount, tx hashes, partial-failure flag). It also covers prerequisites and behavior, making it complete for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all parameters are already described. The description adds little beyond schema, except the note that ruleId comes from q402_recurring_list, which is also in the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads past-fire history of a recurring-payment rule, which is a specific verb (read) and resource. It distinguishes itself from sibling tools like q402_recurring_list or q402_recurring_create by focusing on historical execution data, not configuration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly lists example user queries that should trigger this tool ('when was the last fire?', 'did Friday's payout go out?') and instructs to call q402_recurring_list first to obtain ruleId. This provides clear when-to-use guidance and prerequisite steps.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_listA

Read the user's active recurring-payment rules on their Agent Wallet. Returns each rule's ruleId, label, frequency (hourly:N / daily / weekly:{day} / monthly:N / monthly:last), recipient + amount, chain, token, status (active / paused / paused-by-archive / fired-cap-exceeded / cancelled), when the next fire is scheduled, how many fires have completed, and the most recent error (if any). Use this when the user asks 'what scheduled payouts do I have?' or before authoring a new rule with q402_recurring_create. Authenticated by the configured Multichain API key - no private key required.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It states the operation is a read ('Read'), discloses authentication requirements ('Authenticated by the configured Multichain API key - no private key required'), and details the return content. While it doesn't mention error cases or lack of mutation explicitly, the 'Read' verb and auth note provide substantial transparency. A slight deduction for not addressing potential edge cases like empty results.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the purpose. The second sentence lists return fields with compact notation (e.g., 'frequency (hourly:N / daily / weekly:{day} / monthly:N / monthly:last)'), and the third provides usage + auth in one line. No fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only list tool with one optional parameter and no output schema, this description is highly complete. It covers the exact data returned, usage context, and authentication. No critical information is missing for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100% (walletId is explained in the schema as optional and lowercased). The tool description adds no additional parameter semantics beyond what the schema already provides, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool 'Read the user's active recurring-payment rules on their Agent Wallet' with a specific verb and resource. It also enumerates the exact return fields, leaving no ambiguity about its function. It distinguishes itself from sibling tools like q402_recurring_create by mentioning 'before authoring a new rule'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit usage guidance is given: 'Use this when the user asks "what scheduled payouts do I have?" or before authoring a new rule with q402_recurring_create.' This provides clear trigger scenarios and names an alternative tool, satisfying the requirement for when/alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_pauseA

Pause an active recurring-payment rule. Takes a ruleId (from q402_recurring_list). The rule transitions to status "paused" - the cron skips it on every tick until you resume. Fully reversible via q402_recurring_resume. Use this when the user says 'pause my Friday payout' or 'hold on, stop my recurring rule for now' - gentler than cancel, no re-authoring required. Authenticated by the paid Multichain API key (same gate as create/cancel). Read q402_recurring_list first to find the matching ruleId.

ParametersJSON Schema
NameRequiredDescriptionDefault
ruleIdYesRule id from q402_recurring_list. Required.
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries full burden. It discloses the state transition to 'paused', the cron skipping behavior, full reversibility via resume, and authentication requirements. This is comprehensive behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded, but slightly redundant: it mentions ruleId provenance twice ('Takes a ruleId (from q402_recurring_list)' and later 'Read q402_recurring_list first to find the matching ruleId'). Still, every sentence carries meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, this description covers all necessary context: purpose, usage, behavior, reversibility, alternatives, authentication, and prerequisites. It is fully complete for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value by specifying the source of ruleId ('from q402_recurring_list') and reinforces the prerequisite of listing first. This goes slightly beyond the schema's parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Pause an active recurring-payment rule.' It clearly distinguishes this from sibling tools like q402_recurring_cancel and q402_recurring_resume by explicitly mentioning them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit usage scenarios ('pause my Friday payout', 'hold on, stop my recurring rule for now') and contrasts with cancel ('gentler than cancel, no re-authoring required'). Also instructs to read q402_recurring_list first to find the ruleId, giving a clear prerequisite.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_resumeA

Resume a paused or stopped recurring-payment rule. Takes a ruleId (from q402_recurring_list). Supported transitions: paused → active, paused-by-archive → active (after restoring the wallet), and fired-cap-exceeded → active (after raising the per-tx cap or re-subscribing). nextRunAt is advanced to the next valid slot so the rule doesn't immediately fire on a stale schedule. Cancelled rules cannot be resumed - re-author via q402_recurring_create. Authenticated by the paid Multichain API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
ruleIdYesRule id from q402_recurring_list. Required.
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does so thoroughly. It discloses that nextRunAt is advanced to avoid an immediate stale-fire, that income states require pre-actions (restoring wallet, raising cap/re-subscribing), and that cancelled rules are permanently ineligible. This goes beyond the schema and gives the agent crucial behavior expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Five sentences, each carrying distinct information: purpose, transitions, scheduling behavior, cancellation caveat, and auth requirement. It is front-loaded with the core action and avoids redundancy, making it efficient for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a moderately complex stateful mutation with no output schema, the description covers the tool's purpose, valid input states, side effect on nextRunAt, and the key exception (cancelled rules). It lacks explicit return-value or failure-mode information, but that's a modest gap given the clarity of the state machine and schema. A 4 reflects this near-completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Parameter schema coverage is 100%; the schema itself already documents ruleId as coming from q402_recurring_list and thoroughly explains walletId defaults. The description adds no new parameter-level detail beyond restating 'ruleId (from q402_recurring_list)' and referencing state preconditions. Therefore it stays at the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a precise verb+resource: 'Resume a paused or stopped recurring-payment rule.' It goes beyond a generic verb by enumerating the exact supported state transitions (paused→active, paused-by-archive→active, fired-cap-exceeded→active), which uniquely distinguishes it from sibling tools like q402_recurring_pause, q402_recurring_cancel, and q402_recurring_skip_next.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use context: it tells the agent to take ruleId from q402_recurring_list and lists the exact preconditions for each resume path. It also gives an alternative for cancelled rules ('re-author via q402_recurring_create'), and its sibling list clearly maps to a recurring-payment workflow, so the agent can choose this tool over pause/cancel/skip.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_recurring_skip_nextA

Skip ONLY the next scheduled fire of a recurring-payment rule. Cadence is preserved - the fire after the skipped one runs normally. Use this when the user says 'skip the next Friday payout, Alice is on holiday' or 'don't fire this month's subscription, charge it next month'. The rule must be in active status; paused / cancelled rules must be resumed first. Authenticated by the paid Multichain API key. Call q402_recurring_list first to confirm the ruleId and current schedule.

ParametersJSON Schema
NameRequiredDescriptionDefault
ruleIdYesRule id from q402_recurring_list. Required.
walletIdNoOptional. Lowercased Agent Wallet address when the user holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses that only the next fire is skipped, cadence is preserved, active status is required, and authentication requires a paid Multichain API key. It does not mention return values or error handling, but the core behavioral traits are covered well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is slightly verbose but front-loaded with the core action. Each sentence contributes meaningful context: what it does, when to use it, prerequisites, authentication, and a prerequisite call. No fluff, but could be trimmed slightly without losing value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has only two parameters, no output schema, and no annotations. The description covers the main action, usage cases, prerequisites, and parameter sourcing. It lacks explicit mention of return format or edge cases (e.g., what if the rule is already skipped), but overall it provides sufficient context for an agent to invoke it correctly in most situations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides full coverage of the two parameters, so baseline is 3. The description adds value by specifying that ruleId should be confirmed via q402_recurring_list, giving context on how to obtain a valid value. It also implicitly describes walletId's default behavior via the schema description. This extra guidance justifies one point above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: 'Skip ONLY the next scheduled fire of a recurring-payment rule' and specifies the resource. It also distinguishes itself from sibling tools like pause/cancel by emphasizing that cadence is preserved. The examples further clarify the intended use.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit when-to-use scenarios with user phrasing examples, states the prerequisite that the rule must be active (with a when-not for paused/cancelled rules), and instructs to call q402_recurring_list first. This gives the agent clear usage context and alternatives implicitly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_redstone_feedsA

Discover which RedStone feeds this deployment can drive triggers off, and whether the RedStone-trigger feature is enabled. No API key required. Call this before q402_redstone_trigger_create so you pick a feedId the server can actually read - a trigger on a non-allowlisted feed is rejected. Returns { enabled, allowedFeeds, dataServiceId }.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Given no annotations, the description fully carries the behavioral burden. It discloses the return shape ({ enabled, allowedFeeds, dataServiceId }), the no-auth requirement, and the rejection behavior that this tool prevents. It appropriately characterizes the operation as a read-only discovery without making side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each serving a distinct purpose: main purpose, usage guidance, and return shape. No redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a discovery tool with no parameters and no output schema, this description covers all essential aspects: what it returns, why to use it, and prerequisites. It's especially strong because it tells the agent exactly how to use the returned data to avoid triggering an error later.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters in the schema, so the baseline is 4. The description adds relevant context about authentication (no API key) and what to do with the result, but since there are no inputs, there's nothing more to explain.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource ('Discover which RedStone feeds this deployment can drive triggers off') and clarifies that it also checks if the feature is enabled. It distinguishes itself from sibling tools like q402_redstone_trigger_create by positioning this as the discovery step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to call this before q402_redstone_trigger_create and explains the consequence of using a non-allowlisted feed. Also states that no API key is required, which is a usage prerequisite.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_redstone_trigger_cancelA

Permanently cancel a RedStone trigger so it never fires again. Authenticated by the Multichain API key. Use q402_redstone_trigger_list to find the triggerId.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdNoOptional. Defaults to server default wallet.
triggerIdYesRequired. The trigger id to cancel.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It discloses the irreversible effect ('never fires again') and the required authentication ('Authenticated by the Multichain API key'). It does not mention potential side effects like idempotency or error handling, but the key traits are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with two sentences that front-load the core purpose, then mention authentication and a cross-reference to a related tool. Every sentence earns its place, and there is no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple cancellation tool with no output schema and no annotations, the description covers the essential points: what it does, permanence, auth, and how to find the identifier. It is complete enough for an agent to use it correctly, though it could mention what happens if the trigger doesn't exist.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds a useful hint that the triggerId can be found via q402_redstone_trigger_list, giving context for obtaining the value, but it does not elaborate further on parameter details beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb and resource: 'Permanently cancel a RedStone trigger so it never fires again.' This distinguishes it from sibling tools like trigger_create and trigger_list, making it unambiguous which operation it performs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for use by stating the action's permanent nature and authentication requirement, and it explicitly directs the user to q402_redstone_trigger_list to find the triggerId. It lacks explicit exclusions (e.g., when not to use), but the guidance is sufficient for a cancellation tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_redstone_trigger_createA

Arm a gasless payout that fires when a RedStone feed (NAV / price / RWA) crosses a threshold - e.g. "when ETH >= 2000, send 100 USDT to 0x…", or "when the fund NAV drops to <= 0.98, send the redemption". Fires EXACTLY ONCE per rising-edge crossing (edge-latched server-side): it will not re-fire while the level stays breached, and a trigger created while the feed is already past the threshold does NOT instant-fire - it waits for the next real crossing. Authenticated by the Multichain API key; no private key. Requires the paid Multichain subscription (trial keys rejected). Each fire is bounded by the wallet's perTxMax + dailyLimit and your local Q402_MAX_AMOUNT_PER_CALL + Q402_ALLOWED_RECIPIENTS rails. Call q402_redstone_feeds first to pick a readable feedId. Stop any time with q402_redstone_trigger_cancel.

ParametersJSON Schema
NameRequiredDescriptionDefault
opYesRequired. Comparison against threshold.
modeNoDefault 'once'. 'repeat' re-arms after the feed goes back to the unmet side.
chainNoDefault 'bnb'. Paid Multichain subscription required.
labelNoOptional human label.
tokenNoDefault 'USDT'. USDG is Robinhood-Chain-only.
amountYesRequired. Payout amount as decimal string (e.g. "100.0").
feedIdYesRequired. RedStone feed id (e.g. "ETH"). Must be allowlisted (see q402_redstone_feeds).
confirmYesREQUIRED. Must be literally `true`. Triggers arm future on-chain payouts without a per-fire prompt, so get an explicit user yes BEFORE setting this.
walletIdNoOptional. Defaults to server default wallet.
recipientYesRequired. 0x payout recipient.
thresholdYesRequired. Feed value to cross.
cooldownSecNorepeat only: min seconds between fires. Default 0.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does an excellent job: it discloses edge-latched exact-once firing, no instant-fire when already past threshold, API-key authentication/no private key, paid subscription requirement, and amount/recipient rails. This goes far beyond a typical 'creates a trigger' statement.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but every sentence earns its place: purpose, examples, critical edge-case behavior, auth, subscription, limits, and related-tool guidance. It is front-loaded with the core action and then logically layers constraints and prerequisites without repetition or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 12 parameters, no annotations, and no output schema, this description is exceptionally complete for safe invocation. It covers prerequisite discovery (q402_redstone_feeds), cancellation path, behavioral edge cases, auth model, subscription tier, and amount rails. The schema fills the remaining parameter-specific details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds useful semantic context beyond the schema: feedId must be readable/allowlisted via q402_redstone_feeds, the payout is bounded by wallet limits and local Q402_* rails, and chain requires a paid subscription. It does not walk through every param, but the examples help clarify op/threshold/amount semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Arm a gasless payout that fires when a RedStone feed crosses a threshold.' Concrete examples (ETH >= 2000, NAV <= 0.98) make the operation unambiguous. It also distinguishes itself from siblings by explicitly pointing to q402_redstone_feeds for picking a feedId and q402_redstone_trigger_cancel for stopping.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It clearly says to call q402_redstone_feeds first and to use q402_redstone_trigger_cancel to stop, and it states the paid Multichain subscription requirement. It does not explicitly contrast with immediate-payment or recurring-payment siblings (e.g., q402_pay or q402_recurring_create), but the threshold-crossing use case is strongly implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_redstone_trigger_listA

List the RedStone triggers on the user's Agent Wallet - each with its feed, condition (op + threshold), recipient, amount, mode, armed state, and fire history. Authenticated by the Multichain API key; no funds move.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdNoOptional. Defaults to server default wallet.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses authentication via the Multichain API key and explicitly states 'no funds move,' which helps the agent understand safety and auth requirements. It doesn't mention additional behavioral aspects like data freshness or pagination, but for a simple list operation, these are not critical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no waste. The first sentence front-loads the core action and return fields; the second sentence adds essential auth and safety context. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity tool with one optional parameter and no output schema, the description is complete. It states what is listed, enumerates the data attributes included, and gives auth/no-funds context. Sibling tools are clearly distinct, and the description sufficiently answers what the tool does and when to use it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully describes the single optional walletId parameter (100% coverage), so the description doesn't need to add parameter semantics. The description provides no additional detail about the parameter, which is acceptable given the schema already says 'Optional. Defaults to server default wallet.'

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List') and the resource ('RedStone triggers on the user's Agent Wallet'), and enumerates the specific fields returned (feed, condition, recipient, amount, mode, armed state, fire history). This distinguishes it from sibling trigger operations like create or cancel.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context that this is a read-only listing operation for the user's triggers and notes that no funds move. While it doesn't explicitly name alternatives or state 'use this before creating/canceling triggers,' the context makes the use case clear, and the sibling names (create/cancel) are obvious contrasts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_request_createA

Publish a Q402 payment request (an invoice / bill). Moves no funds - it creates a shareable request to RECEIVE money - so no confirmation is needed and a Trial key works. Returns a req_ id + a /pay link you can share with a human, or hand the requestId to another agent that pays it gaslessly via q402_request_pay. The recipient defaults to your configured Agent Wallet, so you can bill yourself with just an amount. Pair with q402_request_status to poll for payment.

ParametersJSON Schema
NameRequiredDescriptionDefault
memoNoOptional note shown to the payer (≤200 chars).
chainNoDefault 'bnb'. Chain the request settles on.
tokenNoDefault 'USDT'. USDG (Paxos Global Dollar) is Robinhood-Chain-only. All peg USD-1.
amountYesRequired. Amount to request as a decimal string (e.g. "5", "1.50").
ttlDaysNoDays until expiry. Default 7.
recipientNoOptional 0x address to receive funds. Defaults to Q402_AGENT_WALLET_ADDRESS (bill yourself).

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It transparently explains that the tool is non-monetary, creates a shareable request, returns a req_ id and /pay link, defaults the recipient to the Agent Wallet, and supports billing oneself. It could mention edge cases or error behavior, but the core behavior is well covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and efficiently structured. Every sentence conveys essential information: what the tool does, key behavioral caveats, return values, and integration with sibling tools. There is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite lacking an output schema, the description effectively communicates return values (req_ id and /pay link), default behaviors, trial key compatibility, and how to use the tool in a workflow (with q402_request_status and q402_request_pay). This makes the tool self-explanatory for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% parameter coverage with individual descriptions, so the baseline is 3. The description adds valuable semantic context, particularly that the recipient defaults to Q402_AGENT_WALLET_ADDRESS and that you can 'bill yourself with just an amount'. This goes beyond the schema's dry documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's primary function: it publishes a Q402 payment request (invoice/bill), explicitly distinguishing it from payment execution tools. It uses specific language like 'Publish' and 'creates a shareable request to RECEIVE money', and even names the sibling tool q402_request_pay that will actually pay it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides strong usage context: it notes that no funds are moved, no confirmation is needed, a Trial key works, and suggests pairing with q402_request_status for polling. It also implies the alternative of using q402_request_pay for actual payment. However, it does not explicitly say when NOT to use this tool, such as for immediate fund transfers.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_request_payA

Pay a Q402 payment request from your own Agent Wallet, gaslessly. Give it a req_ id (from a /pay link, a 402 Payment Required response, or whoever billed you) and it settles the exact amount + token + recipient the request specifies - you cannot redirect or change them. MOVES FUNDS: requires confirm:true, a live API key, and Q402_ENABLE_REAL_PAYMENTS=1, same as q402_pay. Call q402_request_status first to show the user what they're paying. This is the agent-to-agent billing path: agent A bills with q402_request_create, agent B settles here.

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmYesREQUIRED. Must be literally true. Paying moves real funds - get an explicit user yes first.
walletIdNoOptional. Agent Wallet address to pay from. Defaults to the configured / server-default wallet.
requestIdYesRequired. The req_ id to pay.
consentTokenNoTwo-phase consent. Omit on the FIRST call to get a needs_confirmation preview plus a consentToken (no funds move); re-call with the SAME requestId plus this token to execute. Re-derived from the request terms + funding wallet, so a previewed payment cannot be swapped for a different one.

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and excels. It clearly warns 'MOVES FUNDS' and details exact prerequisites: 'requires confirm:true, a live API key, and Q402_ENABLE_REAL_PAYMENTS=1'. It also explains the two-phase consent flow ('Omit on the FIRST call... re-call with the SAME requestId plus this token to execute') and the non-redirectable nature of the payment.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: purpose, usage, safety warning, prerequisite, precursor step, and differentiation from siblings. It is front-loaded with the core action and remains readable despite its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a fund-moving, two-phase consent tool with no output schema, and the description covers all necessary context: exact usage flow, prerequisites (confirm, API key, env var), safety constraints (non-redirectable), and the billing-workflow position. It is as complete as one could expect for a tool of this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema coverage is 100%, the description adds critical semantic context beyond the schema. It explains that requestId determines 'the exact amount + token + recipient the request specifies - you cannot redirect or change them,' and clarifies the consentToken's re-derivation from request terms, which is not in the schema. This meaningfully enhances parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Pay a Q402 payment request from your own Agent Wallet, gaslessly.' It clearly distinguishes this from q402_pay by framing it as the agent-to-agent billing path: 'agent A bills with q402_request_create, agent B settles here.' This is a clear, unambiguous purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance: 'Give it a req_ id (from a /pay link, a 402 Payment Required response, or whoever billed you)' and advises 'Call q402_request_status first to show the user what they're paying.' It also contrasts with q402_pay and q402_request_create, making the appropriate context salient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_request_statusA

Look up a Q402 payment request by its req_ id. Read-only, no API key. Returns the amount, token, chain, recipient, status (open | paid | expired | cancelled) and a shareable pay URL. Use it to poll a request you created, or to inspect a requestId before paying it with q402_request_pay. An unknown or expired id returns notFound:true (no throw).

ParametersJSON Schema
NameRequiredDescriptionDefault
requestIdYesPayment request id (req_ + 24 hex). Returned by q402_request_create; also the tail of a /pay/ URL.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully carries the behavioral disclosure. It states 'Read-only, no API key,' lists the returned fields (amount, token, chain, recipient, status), and explicitly notes that 'An unknown or expired id returns notFound:true (no throw).' This is transparent and helps the agent anticipate outcomes without guessing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, direct and front-loaded. Every sentence adds value: purpose, return details, usage guidance, and error handling. No redundant wording or unnecessary padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema), the description covers all essential aspects: purpose, parameters, return values, auth requirements, use cases, and error behavior. It is fully self-contained and leaves no critical gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single parameter, so baseline is 3. The description adds context by explaining the parameter is a 'req_ id' returned by q402_request_create and that unknown/expired ids yield notFound:true, which complements the schema's pattern description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Look up a Q402 payment request by its req_ id.' It specifies the resource (payment request) and the verb (look up), and distinguishes it from sibling tools like q402_request_pay and q402_request_create by focusing on status retrieval rather than creation or payment.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit usage context: 'Use it to poll a request you created, or to inspect a requestId before paying it with q402_request_pay.' This clearly indicates when to use the tool and references an alternative (q402_request_pay), while also explaining behavior for unknown/expired ids.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_stakeA

WRITE - MOVES FUNDS. Stakes the Agent Wallet's Q (QuackAI) token into QuackAiStake on BNB Chain, gaslessly. Server-managed Agent Wallet path (Mode C): the server holds the encrypted key, signs the stake, and sponsors gas. Pick a lock tier (stakeType 0-3): 0=30d/10%, 1=60d/15%, 2=120d/32%, 3=180d/40% APR - longer lock, higher APR. Q is BNB-only. amount accepts "max" (stake the wallet's whole Q balance).

REQUIRES CONFIRMATION - like q402_pay, refuses to execute unless confirm:true. Call FIRST without confirm to preview (amount, tier, lock, wallet); show the user, get approval, THEN re-call with confirm:true + the consentToken.

SANDBOX BY DEFAULT - no funds move unless a live Multichain key (q402_live_*) is configured AND Q402_ENABLE_REAL_PAYMENTS=1.

RETRY SAFETY - on status="uncertain" (broadcast unconfirmed) the stake MAY have settled; do NOT blindly retry. The server dedupes identical (tier, amount) calls for 15 min.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesHuman-readable Q amount to stake, e.g. "1000", or "max" for the whole Q balance.
confirmNoMUST be true to actually stake - only after the user approved this exact stake. Omit to preview.
walletIdNoOptional Agent Wallet address to stake from. Defaults to the owner's default wallet.
stakeTypeYesLock tier 0-3 (0=30d/10% … 3=180d/40% APR). Longer lock = higher APR.
consentTokenNoTwo-phase consent token. Leave unset on the first call to preview + get a token; re-call with confirm:true + this token.

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses WRITE/MOVES FUNDS, gasless execution, server-managed key path, confirmation requirement, sandbox default, and retry safety with dedup, all beyond what structured annotations would provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with headers for confirmation, sandbox, and retry safety. Every sentence provides necessary operational detail, making the length justified and front-loaded with the WRITE-MOVES FUNDS warning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, it covers operational workflow (preview/confirm, sandbox flag, retry safety) and references response status ('uncertain'). It doesn't fully describe the response shape, but the critical usage scenarios are all addressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%; all five parameters have descriptions that already explain 'max', tier APR, consentToken flow, etc. The description adds no significant new meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States clearly it 'Stakes the Agent Wallet's Q (QuackAI) token into QuackAiStake on BNB Chain, gaslessly.' Verb+resource+chain makes it distinct from siblings like q402_unstake and q402_pay.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit workflow: call first without confirm to preview, then re-call with confirm:true + consentToken; sandbox default and retry safety are also covered. It references q402_pay as a similar pattern but doesn't explicitly name alternatives for staking.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_stake_positionsA

READ-ONLY - show the Agent Wallet's open Q (QuackAI) staking positions on QuackAiStake (BNB). Returns each position's tier (0=30d/10% … 3=180d/40% APR), principal Q, APR, stake + unlock time, and whether it has matured (unlockable), plus the aggregate staked total, the matured/withdrawable total (the unstake 'max'), and the liquid Q balance (the stake 'max'). Authenticated by the configured live Multichain API key - no private key, no funds move. Use it for 'what are my Q stakes?', 'how much Q can I unstake?', or before q402_unstake with amount 'max'.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdNoOptional Agent Wallet address. Omit to read the owner's default wallet (resolved from the API key).

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully discloses the read-only nature, authentication method (Multichain API key), and safety guarantee ('no private key, no funds move'). It also explains key behavioral details like the 'max' semantics for unstaking and staking, which is transparent and useful.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense and well-structured: it starts with READ-ONLY, covers return values, authentication, safety, and typical use cases in just three sentences. Every clause adds value, and the layout is easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description thoroughly enumerates returned fields (tier, principal, APR, times, matured flag, aggregate totals, max values) and explains the meaning of 'max'. Combined with authentication details and usage guidance, it is fully self-contained for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers the single optional walletId parameter with a clear description (schema coverage 100%). The tool description does not add parameter-level details beyond the schema, but it does provide context about whose positions are shown, which aligns with the default wallet behavior. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear verb ('show') and specific resource ('Agent Wallet's open Q staking positions on QuackAiStake (BNB)'). It differentiates from siblings by emphasizing READ-ONLY and listing exact returned data, distinguishing it from q402_stake, q402_unstake, and q402_yield_positions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit natural-language use cases ('what are my Q stakes?', 'how much Q can I unstake?') and points to using it before q402_unstake with amount 'max'. However, it does not explicitly state when not to use this tool or name alternative read tools like q402_balance, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_unstakeA

WRITE - MOVES FUNDS. Unstakes the Agent Wallet's matured Q from QuackAiStake on BNB back to the wallet, gaslessly (Mode C, server-signed, relayer-sponsored gas). Unstake is PER-RECORD: QuackAiStake exits one matured stake at a time by its index. Pass ith (a record index from q402_stake_positions) to exit one stake, or all: true to exit EVERY matured stake (one tx per record). A stake can only be unstaked after its lock elapses.

REQUIRES CONFIRMATION (confirm:true + consentToken) and the same SANDBOX / live-key gate + uncertain-retry semantics as q402_stake. Use q402_stake_positions first to see which records are exitable.

ParametersJSON Schema
NameRequiredDescriptionDefault
allNoExit EVERY matured stake (one on-chain exit per record). Mutually exclusive with ith.
ithNoRecord index to exit (one matured stake). From q402_stake_positions. Must be >= 1.
confirmNoMUST be true to actually unstake - only after user approval. Omit to preview.
walletIdNoOptional Agent Wallet address. Defaults to the owner's default wallet.
consentTokenNoTwo-phase consent token. Leave unset to preview + get a token; re-call with confirm:true + this token.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It discloses this is a WRITE operation that moves funds, explains the gasless mechanism (Mode C, server-signed, relayer-sponsored gas), per-record execution, confirmation requirements (confirm:true + consentToken), and references 'uncertain-retry semantics' and gates from q402_stake. This is rich behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively long but well-structured with clear labels (WRITE, PER-RECORD, REQUIRES CONFIRMATION) and front-loads the purpose. Every sentence contributes essential information about execution mode, parameter semantics, or prerequisites. Slight density but appropriate for the complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is complex (per-record unstaking, confirmation flow, gasless execution), and the description covers prerequisites, parameter semantics, and safety checks. It does not detail return values for preview vs confirm, but given no output schema exists, this is not strictly required. It also references 'uncertain-retry semantics' without expounding, which is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds substantial meaning beyond the schema: it explains that 'all' and 'ith' are mutually exclusive, indicates 'ith' originates from q402_stake_positions, and describes the two-phase consent/confirmation flow. This goes beyond the basic property descriptions in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's action: unstaking matured Q from QuackAiStake on BNB back to the wallet. It specifies the resource (Agent Wallet's stake), the protocol (QuackAiStake), and the network (BNB), and distinguishes it from siblings like q402_stake_pending or other actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance: use q402_stake_positions first to identify exitable records, and explains the 'ith' vs 'all' distinction. It notes a stake can only be unstaked after its lock elapses, giving a clear precondition. Does not explicitly mention alternatives, but names the prerequisite tool and gives context for when this tool is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_vendor_historyA

Vendor payment history. With a vendor address: total USD paid, tx count, first/last paid, and the recurring cadence if the vendor is on a schedule (answers 'how much have we paid Alice so far?'). Without vendor: a leaderboard of all vendors by total paid, each flagged whether it is paid on a monthly schedule (answers 'which vendors get paid every month?'). Vendors are address-based; a human name only appears if it was saved as a rule label. Read-only and free: any live API key (Trial or Multichain).

ParametersJSON Schema
NameRequiredDescriptionDefault
vendorNoVendor wallet address (0x…). Omit for the leaderboard.
windowNoTime window. Default all.
walletIdNoOptional lowercased Agent Wallet address.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility and discloses key behaviors: read-only, free, requiring only a live API key. It explains the address-based vendor limitation, the condition for showing human names, and what fields to expect in both modes. This goes beyond typical safety hints to cover operational constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded, with the main purpose in the first sentence. Each subsequent sentence covers a specific aspect (modes, limitations, access). It is concise at ~90 words and every sentence contributes meaningful information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (two modes), the description fully explains what the agent can expect from each mode, including return fields and a key constraint. It also addresses authentication requirements and confirms read-only/free status. Without an output schema, this is sufficient for an agent to decide and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by explaining how the `vendor` parameter toggles between two distinct result sets and what each set contains. It also clarifies the `window` default and the optional `walletId` context, enriching the schema's simple descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Vendor payment history.' It provides specific verbs and resources, and distinguishes between two modes: with a vendor address for detailed payment info and without for a leaderboard. It also explicitly answers questions like 'how much have we paid Alice so far?' making the purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context by explaining both invocation modes and example questions. It does not explicitly name alternative tools, but the use cases ('which vendors get paid every month?') imply when to use this tool over siblings. The note about address-based vendors and rule labels adds an important prerequisite.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_wallet_statusA

Report the EIP-7702 delegation status of your Q402 wallet (the EOA derived from Q402_PRIVATE_KEY) across all 12 Q402-supported chains. Returns per-chain { delegated, impl } and a one-line summary. Read-only - no signing, no on-chain TX, no quota consumption. Pair with q402_clear_delegation when the user wants to reset a specific chain. Requires Q402_PRIVATE_KEY in env (same as q402_pay).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden; it explicitly states 'Read-only - no signing, no on-chain TX, no quota consumption' and 'Requires Q402_PRIVATE_KEY in env.' It also reveals the return format per chain. This is strong disclosure beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with every clause earning its place: scope, return shape, safety, pairing, and prerequisite. It is front-loaded and compact.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a 0-parameter schema and no output schema, the description fully describes the tool's behavior, output structure, and requirements. It also connects to a related sibling, making it contextually complete for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema is an empty object, so there are no parameters to document. The description still adds context by identifying the wallet source (EOA derived from Q402_PRIVATE_KEY), which is the implicit parameter, earning a solid baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with the specific verb 'Report' and a precise resource: 'EIP-7702 delegation status of your Q402 wallet across all 12 Q402-supported chains.' This unambiguously distinguishes it from sibling tools such as q402_balance or q402_clear_delegation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a direct pairing with q402_clear_delegation for resetting a specific chain, and notes the environment prerequisite (Q402_PRIVATE_KEY). However, it does not explicitly state exclusions or alternative tools for other status queries, so it stops short of a full when-to-use/not-to-use guide.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_yield_depositA

WRITE - MOVES FUNDS. Supplies the Agent Wallet's stablecoin (USDC / USDT) into Q402 Yield's curated lending market for the chosen chain so it starts earning supply APY. Server-managed Agent Wallet path (Mode C): authenticated by the configured live Multichain API key - the server holds the encrypted key, signs the supply, and sponsors gas. CHAINS: 'bnb' supports USDC or USDT; 'base' supports USDC only. The actual lending venue is the chain's curated market and is reported in the markets feed and the receipt. Other chains are not yet available.

REQUIRES CONFIRMATION - like q402_pay, this tool refuses to execute unless confirm: true is set. Call it FIRST without confirm to get a one-line preview of exactly what will happen (amount, token, chain, wallet); show that to the user, get explicit approval, THEN re-call with confirm:true. Never set confirm:true on the user's behalf without that approval.

SANDBOX BY DEFAULT - like q402_pay, no funds move unless a live Multichain key (q402_live_*) is configured AND Q402_ENABLE_REAL_PAYMENTS=1. Without both, confirm:true returns a sandbox preview (no on-chain supply) with a setup hint - confirm:true alone does NOT move real funds.

RETRY SAFETY - on a timeout or an unconfirmed broadcast the tool returns status="uncertain" and echoes back the idempotencyKey it used. The deposit MAY have settled, so do NOT blindly call again - that starts a NEW deposit and can double-supply. To resume the SAME operation, re-call with idempotencyKey set to the echoed value; the server dedupes on it and replays the original result.

Use q402_yield_reserves first to show available markets + APY, and q402_yield_positions afterward to confirm the supplied balance.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoChain to supply on. 'bnb' (USDC or USDT) or 'base' (USDC only); the venue is the chain's curated lending market, reported in the receipt.
tokenYesStablecoin to supply. USDC or USDT on bnb; USDC only on base.
amountYesHuman-readable decimal amount to supply, e.g. "100.00".
confirmNoMUST be true to actually supply funds - set only after the user explicitly approved this exact deposit in chat. Omit (or false) to preview without moving funds.
protocolNoOptional deposit venue. 'aave' or 'lista' on bnb; 'morpho' on base. Omit for the chain's default venue. Bound into the consent token so a previewed venue can't be swapped. See q402_yield_reserves for each market's venue + APY.
walletIdNoOptional Agent Wallet address to supply from when the owner holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.
consentTokenNoTwo-phase consent token. Leave unset on the first call to get a preview + token; re-call with confirm:true AND this token after the user approves. Bound to (chain, token, amount, protocol, wallet) and refused on mismatch.
idempotencyKeyNoOptional durable idempotency key. Omit and the tool generates a FRESH random key per invocation, so every call executes a distinct deposit. Pass your own STABLE key only for opt-in retry-safety - re-calling with the same key replays the first result instead of double-supplying. If a call returns status="uncertain", it echoes the idempotencyKey it used - pass that exact value back here to resume the same deposit rather than start a new one.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully carries the behavioral load. It clearly discloses that the tool 'MOVES FUNDS' and is a write operation, explains the sandbox-by-default behavior requiring both a live key and Q402_ENABLE_REAL_PAYMENTS=1, details the retry-safety semantics around status='uncertain' and idempotencyKey, and mentions server-managed signing and gas sponsorship. This is exemplary transparency for a financial mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Although the description is long, it is tightly structured with clear section headers (REQUIRES CONFIRMATION, SANDBOX BY DEFAULT, RETRY SAFETY) and every sentence delivers critical operational information. The front-loaded purpose statement and step-by-step usage guidance make it efficient despite its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (8 params, no output schema, no annotations), the description covers all necessary context: authentication, chain-specific constraints, confirmation flow, sandbox mode, retry safety, and sequencing with related tools. It even addresses failure semantics (status='uncertain') and the prevent-double-spend behavior. No significant gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents all 8 parameters at 100% coverage, so the baseline is 3. The description adds valuable meaning beyond the schema by explaining the confirm parameter's two-phase semantics ('Call it FIRST without confirm to get a one-line preview... THEN re-call with confirm:true') and by elaborating idempotencyKey's retry behavior (re-calling with the echoed key 'replays the original result'). These additions justify a score above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the tool's function: 'Supplies the Agent Wallet's stablecoin (USDC / USDT) into Q402 Yield's curated lending market for the chosen chain so it starts earning supply APY.' This uses a specific verb ('supplies') and resource ('Q402 Yield's curated lending market'), and clearly distinguishes it from siblings like q402_yield_withdraw and q402_yield_reserves.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use guidance: 'Use q402_yield_reserves first to show available markets + APY, and q402_yield_positions afterward to confirm the supplied balance.' It also explains the two-phase confirmation flow (call without confirm first, then with confirm) and notes chain limitations ('Other chains are not yet available'). This goes beyond mere context to give a complete usage workflow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_yield_positionsA

READ-ONLY - show the Agent Wallet's current Q402 Yield lending positions. Returns each position's protocol, chain, asset, market address, CURRENT supplied position value (the live position-token balance, in token units), and live supply APY, plus the aggregate current value in USD. Authenticated by the configured live Multichain API key - no private key required and no funds move. Reads the curated lending markets on BNB Chain and Base; each position reports its own protocol/venue. Deposit/withdraw cover both: 'bnb' (USDC/USDT) and 'base' (USDC only). DOES NOT report principal or accrued earnings as separate numbers - the position-token balance already includes accrued interest but is not broken out, so do NOT claim a specific 'earnings/profit/interest earned' figure from this tool; report only the current position value and the APY. walletId is OPTIONAL: omit it and the server reads the owner's default Agent Wallet (resolved from the API key); pass one only when the owner holds more than one wallet. An optional chain filter is also accepted. Use this whenever the user asks 'what is my position worth?', 'what's my current yield balance / APY?', or 'what are my open lending positions?'

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoOptional chain filter. Lending positions on 'bnb' and 'base'. Omit for all supported chains.
walletIdNoOptional Agent Wallet address. Omit to read the owner's default wallet (the server resolves it from the API key); pass one only when the owner holds multiple wallets. Q402_AGENT_WALLET_ADDRESS env fills it in when set.

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full transparency burden. It discloses READ-ONLY behavior, authentication via API key, that no private key is required, and that no funds move. It also explicitly states what the tool does NOT report (principal/accrued earnings), preventing hallucinated earnings claims.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose ('READ-ONLY - show...') and then efficiently covers output, authentication, chain scope, limitations, and parameter semantics. No sentence is wasted; the length is justified by the need to warn against unsupported earnings claims.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description thoroughly explains the return fields and the aggregate USD value. It covers optional params, default wallet resolution, supported chains, and a critical functional caveat. The tool is fully specified for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (both params described), but the description adds significant value: walletId is optional and the server resolves the default wallet from the API key; the Q402_AGENT_WALLET_ADDRESS env var is mentioned; chain filter is optional and chains are listed. This goes well beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'show the Agent Wallet's current Q402 Yield lending positions' and enumerates the returned data (protocol, chain, asset, market address, position value, APY, aggregate USD). This specific verb+resource distinguishes it from transaction siblings like q402_yield_deposit and q402_yield_withdraw.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit usage guidance is provided: 'Use this whenever the user asks...' with concrete example queries. It also explains when to pass walletId vs. omit it, and notes the optional chain filter. This clearly directs the agent on when to select this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_yield_reservesA

READ-ONLY - list the Q402 Yield lending markets the Agent Wallet can supply into. Returns each market's protocol, chain, asset, asset address, position token, market address, and current supply APY (shown as a %). No auth required and no funds move - this is purely a preview of available yield. Reads the curated lending markets on BNB Chain, plus Base when a curated vault is configured; each market reports its own protocol/venue. Deposit/withdraw (q402_yield_deposit / q402_yield_withdraw) cover both: 'bnb' (USDC/USDT) and 'base' (USDC only). Pass an optional chain to filter; omit it to see every supported chain. Use this whenever the user asks 'where can I earn yield?' or 'what's the lending APY on ?' before supplying.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoOptional chain filter. Curated lending markets on 'bnb' and 'base'. Omit for all supported chains.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully carries the burden: it states 'No auth required and no funds move - this is purely a preview of available yield', discloses it reads curated markets on BNB/Base, and clarifies the optional chain filter behavior. This is excellent transparency for a read-only tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with action and safety, then return fields, scope, alternatives, parameter usage, and trigger scenarios. It is longer than strictly necessary but every sentence adds relevant context; a slight trim would make it a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only list tool with one optional parameter and no output schema, the description fully covers purpose, safety, returned fields, supported chains, filtering, and when to invoke it. It leaves no significant ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter `chain` is fully described in the schema (enum+description), and the tool description adds filtering semantics ('omit it to see every supported chain') and chain-to-asset coverage (USDC/USDT vs USDC only), helping the agent decide parameter values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with 'READ-ONLY - list the Q402 Yield lending markets the Agent Wallet can supply into', a specific verb+resource+scope. It enumerates returned fields and distinguishes from siblings by stating it's a preview of available yield rather than a deposit/withdraw or positions tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit trigger phrases ('where can I earn yield?' or 'what's the lending APY on <asset>?') and says to use it 'before supplying', while referencing deposit/withdraw tools. However, it does not explicitly mention q402_yield_positions for viewing current holdings, so exclusion guidance is slightly incomplete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

q402_yield_withdrawA

WRITE - MOVES FUNDS. Withdraws the Agent Wallet's supplied stablecoin (USDC / USDT) out of its Q402 Yield lending position back to the Agent Wallet. Pass amount="max" to withdraw the maximum currently redeemable (can be < full position under vault caps). Server-managed Agent Wallet path (Mode C): authenticated by the configured live Multichain API key - the server holds the encrypted key, signs the withdraw, and sponsors gas. CHAINS: 'bnb' (USDC or USDT); 'base' (USDC only). The venue is the chain's curated lending market and is reported in the receipt. Other chains are not yet available.

REQUIRES CONFIRMATION - like q402_pay, this tool refuses to execute unless confirm: true is set. Call it FIRST without confirm to get a one-line preview of exactly what will happen (amount, token, chain, wallet); show that to the user, get explicit approval, THEN re-call with confirm:true. Never set confirm:true on the user's behalf without that approval.

SANDBOX BY DEFAULT - like q402_pay, no funds move unless a live Multichain key (q402_live_*) is configured AND Q402_ENABLE_REAL_PAYMENTS=1. Without both, confirm:true returns a sandbox preview (no on-chain withdraw) with a setup hint - confirm:true alone does NOT move real funds.

RETRY SAFETY - on a timeout or an unconfirmed broadcast the tool returns status="uncertain" and echoes back the idempotencyKey it used. The withdrawal MAY have settled, so do NOT blindly call again - that starts a NEW withdrawal and can double-withdraw. To resume the SAME operation, re-call with idempotencyKey set to the echoed value; the server dedupes on it and replays the original result.

Use q402_yield_positions first to see the current position size (especially before an amount="max" withdrawal).

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoChain to withdraw on. 'bnb' (USDC or USDT) or 'base' (USDC only). The actual venue is reported in the receipt.
tokenYesStablecoin to withdraw. USDC or USDT on bnb; USDC only on base.
amountYesHuman-readable decimal amount to withdraw, e.g. "100.00", or the literal "max" to withdraw the maximum currently redeemable (can be < full position under vault liquidity caps).
confirmNoMUST be true to actually withdraw funds - set only after the user explicitly approved this exact withdrawal in chat. Omit (or false) to preview without moving funds.
protocolNoVenue to withdraw from when the wallet holds the same token in more than one lending venue on a chain. Omit when unambiguous; on an "AMBIGUOUS_POSITION" error re-call with one of the `protocols` the server lists.
walletIdNoOptional Agent Wallet address to withdraw to when the owner holds multiple wallets. Defaults to Q402_AGENT_WALLET_ADDRESS env, then the owner's default wallet on the server.
consentTokenNoTwo-phase consent token. Leave unset on the first call to get a preview + token; re-call with confirm:true AND this token after the user approves. Bound to (chain, token, amount, wallet).
idempotencyKeyNoOptional durable idempotency key. Omit and the tool generates a FRESH random key per invocation, so every call executes a distinct withdrawal. Pass your own STABLE key only for opt-in retry-safety - re-calling with the same key replays the first result instead of double-withdrawing. If a call returns status="uncertain", it echoes the idempotencyKey it used - pass that exact value back here to resume the same withdrawal rather than start a new one.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden and does so thoroughly. It discloses the confirmation gate, sandbox behavior (no real funds unless live key + env var), retry safety (status='uncertain', idempotencyKey replay), server-side key handling, gas sponsorship, and venue reporting. This goes far beyond a typical description.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but all content is purposeful, formatted in scannable uppercase lead-ins ('REQUIRES CONFIRMATION', 'SANDBOX BY DEFAULT', 'RETRY SAFETY') that front-load critical behaviors. It is dense with information but avoids fluff. Slight deduction for length, though nothing is redundant.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having 8 params and no output schema, the description fully covers operational prerequisites (confirmation, sandbox), retry handling (uncertain status, idempotency key), chain/token constraints, and where to find results ('reported in the receipt'). It even references related tools for pre-condition checks. This is comprehensive for a high-complexity transaction tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds meaningful context beyond the schema: clarifies amount='max' can be less than full position due to caps, explains consentToken flow, and gives the full retry-safe idempotencyKey semantics ('re-calling with the same key replays the first result instead of double-withdrawing'). This lifts it above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'WRITE - MOVES FUNDS. Withdraws the Agent Wallet's supplied stablecoin out of its Q402 Yield lending position back to the Agent Wallet.' This names the specific verb (withdraw), resource (Q402 Yield lending position), and direction (back to Agent Wallet), making the tool's purpose unmistakable. It also distinguishes from siblings like q402_yield_deposit and q402_yield_positions, creating clear differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context: 'Use q402_yield_positions first to see the current position size', explicit confirmation workflow ('Call it FIRST without confirm... get explicit approval, THEN re-call'), sandbox default conditions, and chain availability ('Other chains are not yet available'). It does not explicitly name a contrary alternative sibling, but the guidance is concrete and actionable enough to rate above baseline.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

travel_book_hotelA

Book a hotel. Requires two-phase consent: the first call (without consentToken) returns status="needs_confirmation" with a preview and a consentToken - NO booking is made. Relay the preview to the user verbatim, get their explicit yes, then re-call with the SAME args plus consentToken. A spend limit guard rejects bookings above TRAVALA_MAX_BOOKING_USD (default: same as Q402_MAX_AMOUNT_PER_CALL). Always call travel_get_quote first to obtain the amount.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesExpected total amount in USD (from travel_get_quote).
guestsNoNumber of guests (default 1).
checkInYesCheck-in date (YYYY-MM-DD).
hotelIdYesHotel ID from travel_search_hotels.
checkOutYesCheck-out date (YYYY-MM-DD).
currencyNoCurrency (default USD).
guestNameYesFull name of the primary guest.
consentTokenNoTwo-phase consent token from the first call.

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully carries the behavioral transparency burden. It discloses critical details: the first call makes no booking, returns a needs_confirmation status and consentToken, requires relaying preview verbatim, and enforces a spend limit guard tied to an environment variable. This is rich, safety-relevant context beyond what the schema provides.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded: the first sentence states the purpose, and the following sentences add only necessary procedural and safety details. Every sentence earns its place, and the structure helps the agent process the two-phase flow without unnecessary verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex 8-parameter tool with no output schema and no annotations, the description covers the key workflow: quote prerequisite, two-phase consent, preview relay, spend limit, and consentToken re-call. It omits the return value of the second call or success handling, which would be useful, but the described flow is otherwise complete enough for safe usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds contextual meaning for amount and consentToken by linking amount to the quote prerequisite and explaining the two-phase token flow, but it does not substantially elaborate on other parameters beyond their schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Book a hotel,' a clear verb+resource statement that immediately identifies the tool's purpose. It further distinguishes itself from siblings like travel_search_hotels and travel_get_quote by framing this as the final booking step after obtaining a quote.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states 'Always call travel_get_quote first to obtain the amount,' providing a clear prerequisite and usage context. It thoroughly explains the two-phase consent workflow, but does not explicitly mention when not to use the tool or list alternative tools, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

travel_get_booking_statusA

Retrieve the current status of a hotel booking using the bookingId returned by travel_book_hotel. Returns booking details including hotel, dates, amount, currency, and status (confirmed, pending, cancelled, not_found).

ParametersJSON Schema
NameRequiredDescriptionDefault
bookingIdYesBooking ID from travel_book_hotel.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses what the tool returns (hotel, dates, amount, currency, status) and enumerates the possible status values (confirmed, pending, cancelled, not_found). This gives the agent a good sense of behavior, though it doesn't explicitly state read-only semantics, it's strongly implied by 'Retrieve'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary purpose, and contains no unnecessary words. It efficiently conveys action, input, and return details without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete for a simple read-only status tool: it states the purpose, the input provenance, the returned fields, and the possible statuses including an error-like 'not_found'. No output schema exists, so the description appropriately summarizes the response contents. There are no missing critical details for a tool of this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% coverage for bookingId with 'Booking ID from travel_book_hotel.' The description repeats this same information ('using the bookingId returned by travel_book_hotel') without adding new semantic meaning. Therefore, the description adds no value beyond the schema, so a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Retrieve') and resource ('current status of a hotel booking'), and clearly distinguishes from sibling tools like travel_search_hotels and travel_book_hotel. It also specifies the input source (bookingId from travel_book_hotel), making the tool's role in the booking flow unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description states the usage context: retrieving status after booking, using the bookingId from travel_book_hotel. This provides clear context for when to use it, though it doesn't explicitly mention alternatives or exclusions. The guidance is clear enough for an agent to select it vs. other travel tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

travel_get_quoteA

Get a price quote for a specific hotel and date range. Returns the total amount in currency for the stay. Use the hotelId from travel_search_hotels. Present the quote to the user before proceeding to travel_book_hotel.

ParametersJSON Schema
NameRequiredDescriptionDefault
guestsNoNumber of guests (default 1).
checkInYesCheck-in date (YYYY-MM-DD).
hotelIdYesHotel ID from travel_search_hotels.
checkOutYesCheck-out date (YYYY-MM-DD).

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the transparency burden. It discloses that the tool returns the total amount in currency, which is useful, but it does not mention whether the quote is binding, expires, or has any side effects. For a quote tool, the absence of side effects is implied but not explicitly stated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the main purpose, and every sentence adds value: the first states what it does, the second explains the workflow. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 4-parameter tool with no output schema, the description explains the return value and usage context. It covers the essential information an agent needs: what to pass, what to expect, and the surrounding workflow. It does not detail edge cases, but the tool's simplicity makes this acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for all four parameters, so the schema already explains each field. The description adds limited additional meaning by tying hotelId to travel_search_hotels and mentioning date range, but this is largely redundant with the schema's parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Get a price quote for a specific hotel and date range' with a specific verb and resource. It also mentions the return value (total amount) and differentiates from siblings like travel_search_hotels, travel_book_hotel, and travel_get_booking_status by focusing on the quote step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides workflow context: 'Use the hotelId from travel_search_hotels' and 'Present the quote to the user before proceeding to travel_book_hotel.' This implies when to use it in the booking sequence, but it does not explicitly state when not to use it or mention alternative tools beyond the workflow reference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

travel_search_hotelsA

Search for available hotels at a destination for a given date range. Returns a list of hotels with IDs, names, locations, ratings, and nightly prices. Use the returned hotelId with travel_get_quote to get an exact booking price. In mock mode (default) returns deterministic fixture hotels.

ParametersJSON Schema
NameRequiredDescriptionDefault
guestsNoNumber of guests (default 1).
checkInYesCheck-in date (YYYY-MM-DD).
checkOutYesCheck-out date (YYYY-MM-DD).
destinationYesCity, region, or address.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the return format (list with specific fields) and importantly the mock mode default behavior ('returns deterministic fixture hotels'), which is non-obvious and critical for setting expectations. It does not explicitly state that it is a read-only operation, but this is implied by its search nature and the subsequent travel_get_quote step.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences: the first states the core purpose, the second details the return values, and the third provides integration and mock mode information. Every sentence contributes new information, with no redundant or filler content. The structure is front-loaded with the action, making it easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is quite complete for a search tool: it covers purpose, return fields, integration to travel_get_quote, and mock mode default. It does not mention edge cases such as no-results behavior or result ordering, but these are less critical given the tool's simplicity and the absence of an output schema. The mock mode disclosure is particularly valuable in a multi-tool environment.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with descriptions for destination, checkIn, checkOut, and guests. The description adds only a high-level reference to 'destination' and 'date range' and does not provide extra meaning beyond the schema parameters. It does not mention the 'guests' parameter, but the schema already covers it. The description adds no additional parameter-level guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Search'), resource ('hotels'), and scope ('at a destination for a given date range'). It distinguishes from sibling tools like travel_get_quote, travel_book_hotel, and travel_get_booking_status by focusing on the search/list step. The return content (IDs, names, locations, ratings, nightly prices) is explicitly enumerated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage context: it is for searching hotels, and the instruction to use the returned hotelId with travel_get_quote guides the agent to the next step. It does not explicitly state exclusions (e.g., when not to use it), but the integration hint strongly implies its role in the workflow. Sibling tool names reinforce the differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 50 tool updatesv0.11.14
    • First observedq402_agent_spend_report
    • First observedq402_agentic_info
    • First observedq402_balance
    • First observedq402_batch_pay
    • First observedq402_bridge_gas_tank
    • First observedq402_bridge_history
    • First observedq402_bridge_quote
    • First observedq402_bridge_send
    • First observedq402_clear_delegation
    • First observedq402_doctor
    • First observedq402_escrow_create
    • First observedq402_escrow_dispute
    • First observedq402_escrow_lock
    • First observedq402_escrow_refund
    • First observedq402_escrow_release
    • First observedq402_escrow_status
    • First observedq402_memory_summary
    • First observedq402_oft_history
    • First observedq402_oft_quote
    • First observedq402_oft_send
    • First observedq402_pay
    • First observedq402_quote
    • First observedq402_receipt
    • First observedq402_recurring_cancel
    • First observedq402_recurring_create
    • First observedq402_recurring_fires
    • First observedq402_recurring_list
    • First observedq402_recurring_pause
    • First observedq402_recurring_resume
    • First observedq402_recurring_skip_next
    • First observedq402_redstone_feeds
    • First observedq402_redstone_trigger_cancel
    • First observedq402_redstone_trigger_create
    • First observedq402_redstone_trigger_list
    • First observedq402_request_create
    • First observedq402_request_pay
    • First observedq402_request_status
    • First observedq402_stake
    • First observedq402_stake_positions
    • First observedq402_unstake
    • First observedq402_vendor_history
    • First observedq402_wallet_status
    • First observedq402_yield_deposit
    • First observedq402_yield_positions
    • First observedq402_yield_reserves
    • First observedq402_yield_withdraw
    • First observedtravel_book_hotel
    • First observedtravel_get_booking_status
    • First observedtravel_get_quote
    • First observedtravel_search_hotels

TDQS

A4.1/5.0

Scored across 50 tools

Disambiguation4/5

Most tools have highly specific names and descriptions, but the set includes several overlapping money-movement tools (q402_pay, q402_batch_pay, q402_request_pay, q402_bridge_send, q402_oft_send) and three stub tools (q402_bridge_history, q402_bridge_gas_tank, q402_oft_history) that could confuse. Unrelated travel tools further muddy the domain boundary.

Naming Consistency5/5

All tools use snake_case with a consistent verb_noun pattern, and the q402_/travel_ prefixes cleanly separate the two domains. No camelCase or mixed conventions.

Tool Count2/5

50 tools is far above the typical well-scoped range. The server bundles many sub-domains (payments, recurring, redstone, bridge, OFT, yield, stake, escrow, requests) plus unrelated travel tools, and includes non-functional guidance stubs, making it feel bloated and hard to navigate.

Completeness4/5

The Q402 domain is covered thoroughly: payments, batch, recurring rules with full lifecycle, escrow lifecycle, yield deposit/withdraw, staking, requests, and even event-driven redstone triggers. The main gaps are the three stub tools that defer to a dashboard, and a few missing update operations (e.g., no redstone trigger update, no travel cancellation), but the core surface is complete.

Maintenance

ActivityActive
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers