← quote.trade

INDIVIDUAL MCP TOOL

quote_trade_status

Call GET /api/status and return system status, server time, contracts URL, and feature flags.

quote.tradenone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent endpoint

quote.trade

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.quote-trade]
url = "https://quote.trade/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "quote-trade": {
      "type": "http",
      "url": "https://quote.trade/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: quote-trade
Remote MCP URL: https://quote.trade/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "quote-trade": {
      "url": "https://quote.trade/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "quote-trade": {
      "type": "http",
      "url": "https://quote.trade/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "quote-trade",
  "transport": "streamable-http",
  "url": "https://quote.trade/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • quote_trade_api_manifest — Explains that MCP is only a tool/schema adapter around the existing Quote.Trade APIs, and returns local servlet guardrail configuration.
  • quote_trade_exchange_info — Call GET /api/exchangeInfo and return trading symbols, assets, status, rate limits, and server time.
  • quote_trade_instruments — Call GET /api/getInstrumentPairs.
  • quote_trade_ticker — Call GET /api/ticker?symbol=SYMBOL and return last price, bid, ask, and lastUpdateId.
  • quote_trade_depth — Call GET /api/depth?symbol=SYMBOL&limit=N and return bids/asks depth from the public market-data API.
  • quote_trade_account — Call GET /api/account with the configured API key and return account, balances, margin, wallet, and unrealized P/L fields.
  • quote_trade_order_preview — Normalize and validate a BUY/SELL order locally without sending it to Quote.Trade.
  • quote_trade_place_order — Guarded live order tool for POST /api/order.