Tradier

live FinanceMarkets

Options chains with greeks/IV, expirations, and quotes via Tradier. BYO key.

3 tools
0ms auth
free tier 50 calls/day

Tools

tradier_option_chain

Get the option chain (strikes, greeks, IV, open interest) for <symbol> expiring <expiration>. Returns every call and put at that expiration with bid/ask/last, volume, open interest, and greeks (delta/

No parameters required.

Try it
tradier_option_expirations

List the available option expiration dates for <symbol>. Returns an array of YYYY-MM-DD dates you can pass to tradier_option_chain. Example: tradier_option_expirations({ symbol: "AAPL", _apiKey: "your

No parameters required.

Try it
tradier_quote

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

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/tradier/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/tradier/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"tradier_option_chain","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("tradier_option_chain", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("options chains with greeks/iv, expirations, and quotes via tradier");