MCP server exposing 3 tools for tradier.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/tradier/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
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/gamma/theta/vega/IV). Example: tradier_option_chain({ symbol: "AAPL", expiration: "2026-01-16", _apiKey: "your-token" })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-token" })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" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/tradier/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io