tradier_quote

Pack: tradier · Endpoint: https://gateway.pipeworx.io/tradier/mcp

Get real-time quotes for (last price, bid, ask, volume, change). Accepts one or more comma-separated tickers. Example: tradier_quote({ symbols: “AAPL,MSFT,SPY”, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
symbolsstringyesOne or more ticker symbols, comma-separated, e.g. “AAPL” or “AAPL,MSFT,SPY”
sandboxbooleannoUse the Tradier sandbox environment (sandbox.tradier.com) instead of production. Default false.
_apiKeystringyesTradier access token (free with a funded Tradier brokerage account, or a sandbox token)

Example call

Arguments

{
  "symbols": "AAPL",
  "_apiKey": "your-tradier-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/tradier/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tradier_quote","arguments":{"symbols":"AAPL","_apiKey":"your-tradier-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('tradier_quote', {
  "symbols": "AAPL",
  "_apiKey": "your-tradier-api-key"
});

More examples

{
  "symbols": "AAPL,MSFT,SPY",
  "_apiKey": "your-tradier-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tradier": {
      "url": "https://gateway.pipeworx.io/tradier/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026