API Tools
quote.trade
An MCP server that wraps Quote.Trade APIs for trading data and system status.
ENDPOINT 1
https://quote.trade/mcp
Known tools 11
quote_trade_api_manifestExplains that MCP is only a tool/schema adapter around the existing Quote.Trade APIs, and returns local servlet guardrail configuration.
quote_trade_statusCall GET /api/status and return system status, server time, contracts URL, and feature flags.
quote_trade_exchange_infoCall GET /api/exchangeInfo and return trading symbols, assets, status, rate limits, and server time.
quote_trade_instrumentsCall GET /api/getInstrumentPairs.
quote_trade_tickerCall GET /api/ticker?symbol=SYMBOL and return last price, bid, ask, and lastUpdateId.
quote_trade_depthCall GET /api/depth?symbol=SYMBOL&limit=N and return bids/asks depth from the public market-data API.
quote_trade_accountCall GET /api/account with the configured API key and return account, balances, margin, wallet, and unrealized P/L fields.
quote_trade_order_previewNormalize and validate a BUY/SELL order locally without sending it to Quote.Trade.
quote_trade_place_orderGuarded live order tool for POST /api/order.
quote_trade_liquidity_sampleOpen wss://app.quote.trade/ws/liquidity, subscribe to a symbol, collect a bounded number of messages, then close.
quote_trade_private_events_sampleOpen wss://app.quote.trade/ws/listenKey with the configured API key, collect bounded account/order/risk messages, then close.