respond_rfq
Submit a sealed-bid price quote for an open RFQ. Your quote stays private, and losing bids are never revealed. No funds locked until the requester accepts.
Instructions
Market-maker tool — submit a sealed-bid price quote to compete on an open RFQ. Quotes are private: other makers cannot see your price, and losing bids are never revealed. No funds are locked until the requester accepts a quote.
USE WHEN: the MCP client is acting as a market maker and has decided to quote on a specific open RFQ (obtained via list_open_rfqs). DO NOT USE WHEN: acting as an end-user buyer or seller who wants to receive quotes — use create_rfq instead. This is the market-maker side only; sealed bids, not open negotiation.
PARAM NOTES: price is per unit of base token in quote-token terms (e.g. "3450.00" for ETH priced in USDT). amount is base-token amount offered. No funds are locked at quote time — settlement only begins when the requester accepts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rfqId | Yes | ID of the RFQ to respond to | |
| price | Yes | Price per unit of base token in quote token terms (e.g., "3450.00") | |
| amount | Yes | Amount of base token to offer | |
| expiresIn | No | Quote expiration in seconds | |
| client_request_id | No | Idempotency key. Retrying the SAME write with the SAME id within this MCP session returns the first result instead of triggering a second on-chain/backend side effect. Best-effort: not durable across MCP restarts. |