tradier_option_chain

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

Get the option chain (strikes, greeks, IV, open interest) for expiring . 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” })

Parameters

NameTypeRequiredDescription
symbolstringyesUnderlying ticker symbol, e.g. “AAPL”, “SPY”, “TSLA”
expirationstringyesExpiration date in YYYY-MM-DD format, e.g. “2026-01-16” (use tradier_option_expirations to list valid dates)
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

{
  "symbol": "AAPL",
  "expiration": "2026-01-16",
  "_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_option_chain","arguments":{"symbol":"AAPL","expiration":"2026-01-16","_apiKey":"your-tradier-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('tradier_option_chain', {
  "symbol": "AAPL",
  "expiration": "2026-01-16",
  "_apiKey": "your-tradier-api-key"
});

More examples

{
  "symbol": "SPY",
  "expiration": "2026-02-20",
  "_apiKey": "your-tradier-api-key",
  "sandbox": true
}

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