Quote.Trade MCP Adapter MCP server
Quote.Trade MCP: login, deposit address, market data, orders, and withdraws.
Little public usage data yet
Reviews
Write oneNobody has reviewed Quote.Trade MCP Adapter yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Quote.Trade MCP Adapter tools (25, 5 write)
write = sends, deletes, buys or postsquote_trade_accountFreeWithdraw step 1 / anytime account check. GET /api/account with per-request X-MBX-APIKEY. Inspect available balances before withdraw. No live trading action.
quote_trade_api_discoveryFreeRead once to learn efficient direct REST/WebSocket use: routes, signing, streaming, cumulative depth, and client execution controls. Public guidance only; no upstream calls.
quote_trade_api_manifestFreeExplains that MCP is only a tool/schema adapter around the existing Quote.Trade APIs, and returns local servlet guardrail configuration.
quote_trade_cancel_orderwrite actionFreeCancel one order by orderId. POST /api/cancelOrder. Identifies exactly one order via the matching engine's single-order cancel path - NOT a mass-cancel. There is no quote_trade_cancel_all: the upstream mass-cancel action's scope for edge-case parameters could not be verified from this codebase alone and is intentionally not exposed through MCP. Requires tradingEnabled, allowedSymbols (same allowlist as quote_trade_place_order), and a trade-scoped API key. No notional check applies: a cancellation has none. humanApproved/approvalText are agent friction only.
quote_trade_depthFreeTrade step 3. GET /api/depth?symbol=SYMBOL&limit=N. Use depth quantity to choose a suitable limit price before placing an order.
quote_trade_exchange_infoFreeCall GET /api/exchangeInfo and return a paginated slice of trading symbols plus rate limits/server time. Upstream has no pagination, so this adapter filters/slices locally. Default limit=50, max=200. Prefer quote_trade_instruments for compact tradable-pair discovery.
quote_trade_get_challengeFreeOptional wallet login/register step 1 (not required for trading with an existing API key). POST /api/getChallenge with a wallet address (login). Returns challenge text and isNewUser. Step 2: sign the challenge with the wallet outside MCP. Step 3: quote_trade_logon. No API key required.
quote_trade_get_deposit_addressFreeDeposit step 1. GET /api/getDepositAddress?symbol=ASSET and return chain + contract/address. Supported assets: USDC and USDT (mainnet), XUSDC (USDC on XDC). Step 2 is transferring funds to that address outside MCP (no backend call).
quote_trade_get_deposit_historyFreeAnytime deposit check. POST /api/getDepositHistory with per-request X-MBX-APIKEY. Requires a trade-scoped API key (same scope as quote_trade_place_order). Read-only: no live trading action.
quote_trade_get_index_positionsFreeAnytime position check. POST /api/getIndexPositions with per-request X-MBX-APIKEY. Distinct from quote_trade_get_positions: index/basket instrument positions rather than regular instrument positions. Optional assetType filter. Read-only: no live trading action.
quote_trade_get_order_historywrite actionFreeAnytime order check. POST /api/getOrderHistory with per-request X-MBX-APIKEY. Full order history, or one order's history with optional orderId. Requires a trade-scoped API key (same scope as quote_trade_place_order). Read-only: no live trading action.
quote_trade_get_order_statuswrite actionFreeAnytime order check. POST /api/orderStatus with per-request X-MBX-APIKEY. Query the status of an order previously placed with quote_trade_place_order. Read-only: no live trading action.
quote_trade_get_ordersFreeAnytime order check. POST /api/getOrders with per-request X-MBX-APIKEY. Read-only: no live trading action. Requires read entitlement on API keys that carry one.
quote_trade_get_positionsFreeAnytime position check. GET /api/positions with per-request X-MBX-APIKEY. Reconcile current positions when starting or reconnecting, per the direct-discovery guide (quote_trade_api_discovery / rest.privateReads). No live trading action.
quote_trade_get_riskFreeAnytime risk check. POST /api/getRisk with per-request X-MBX-APIKEY. Margin/equity/unrealized-PnL summary for the authenticated account. Read-only: no live trading action.
quote_trade_get_user_walletsFreeAnytime wallet check. POST /api/getUserWallets with per-request X-MBX-APIKEY. On-chain addresses previously seen depositing to the authenticated account. Read-only: no live trading action.
quote_trade_get_withdraw_requestsFreeAnytime withdrawal check. POST /api/getWithdrawRequests with per-request X-MBX-APIKEY. Inspect the status of withdrawals already submitted (including via quote_trade_withdraw). Requires a trade-scoped API key. Read-only: no live trading action, and this tool cannot cancel a withdrawal.
quote_trade_instrumentsFreeTrade step 1. GET /api/getInstrumentPairs — paginated tradable symbols/instruments. Default limit=50, max=200. Use skip to page. Pick a symbol from this response for ticker/depth/order calls.
quote_trade_logonFreeOptional wallet login/register step 3 (not required if the agent already has an API key). Pass challenge + wallet signature from steps 1–2. isNewUser=true -> POST /api/registerUser; else POST /api/logon. On success, map body.requestToken/requestSecret to X-MBX-APIKEY / X-MBX-APISECRET; use body.id as account. Wallet signing stays outside MCP.
quote_trade_order_previewwrite actionFreeOptional before live trade. Normalize/validate a BUY/SELL order locally without sending it.
quote_trade_place_orderwrite actionFreeTrade step 4. POST /api/order with a suitable price after instruments/ticker/depth. Requires tradingEnabled, allowedSymbols (* or explicit list; empty denies), maxNotionalUsd>0, and API credentials. Sending X-MBX-APISECRET to this MCP host grants it full signing authority. humanApproved/approvalText are agent friction only.
quote_trade_statusFreeCall GET /api/status and return system status, server time, contracts URL, and feature flags.
quote_trade_tickerFreeTrade step 2. GET /api/ticker?symbol=SYMBOL for a symbol from quote_trade_instruments. Returns last price, bid, ask, lastUpdateId.
quote_trade_withdrawFreeWithdraw step 3. POST /api/sendWithdrawWithVTokenRequest for stablecoins only (USDC|USDT|XUSDC) to the user's own login wallet (no toAddress). Not available for BTC/ETH/other assets. Requires a full-access API key with withdraw entitlement (trade-only keys are rejected by Quote.Trade), tradingEnabled, allowedWithdrawAssets (independent of the trading allowedSymbols allowlist), and maxNotionalUsd>0. humanApproved/approvalText are agent friction only.
quote_trade_withdraw_previewFreeOptional before live withdraw. Stablecoins only: USDC, USDT, or XUSDC (not BTC/ETH/other). Own login wallet only (no toAddress). estimatedNotional is USD at $1 peg. Trade-only API keys cannot withdraw — use a full-access key with withdraw entitlement.
Public scan report
scanner v0.1.5 · 2026-09-19 · same rubric, same numbers if you re-run it
- –Code scanremote-only server, no package to scann/a
- Live reliabilityremote reachable in 3269ms17/20
- Tool poisoning25 tool descriptions checked15/15
- Auth qualityAPI key sent as a header8/15
- Maintenanceno repository listed3/15
- Maintainer identityverified namespace with website, no repo4/10
Findings (1)
- lowNo source repository listed
maint.no-repo
Install directly
claude mcp add --transport http mcp https://quote.trade/mcp
Quote.Trade MCP Adapter: common questions
- Is Quote.Trade MCP Adapter MCP server safe?
- With care: it is graded C, so read the findings first (63/100). Read the Quote.Trade MCP Adapter safety report
- How do I install Quote.Trade MCP Adapter?
- It runs remotely at quote.trade. Add it to Claude Code, Claude Desktop or Cursor with the snippets above, or call it through the mcp.market gateway without installing anything.
- Does Quote.Trade MCP Adapter need an API key?
- Yes. The registry entry asks for
X-MBX-APIKEY,X-MBX-APISECRET. - Is Quote.Trade MCP Adapter maintained?
- The latest release is v1.5.8.
- Is Quote.Trade MCP Adapter up?
- 100% of our last 2 checks got an answer. We check remote servers about four times a day.
- What can I use instead of Quote.Trade MCP Adapter?
- Servers from other publishers that do the same job: Deadlatch MCP server, Work Order MCP server and Growaify — Autonomous Commerce for AI Agents MCP server. Compare all Quote.Trade MCP Adapter alternatives.
Alternatives to Quote.Trade MCP Adapter
Same job from other publishers: the closest match first, then the best rated.
- DeadlatchLocal advisory pre-trade risk gate for agents. Never places orders.not reviewedGrowingA
- Work OrderJob orders for trades and field work: parts, labour, status, completion report, invoice payload.not reviewedGrowingA
- Growaify — Autonomous Commerce for AI AgentsAutonomous commerce for AI agents: discover, quote, order, pay, verify.not reviewedGrowingA
- Federal RegisterFederal Register proposed and final rules, notices, executive orders, and FAR cases. 8 tools.not reviewedEstablishedA
- ShopwareQuery and safely manage a Shopware 6 shop: products, orders, customers, stock, audits, reports.not reviewedEstablishedB