marketdata_option_chain

Pack: marketdata-app · Endpoint: https://gateway.pipeworx.io/marketdata-app/mcp

Get the full option chain for an underlying stock/ETF/index, with strike, bid/ask/mid/last, volume, open interest, IV and greeks (delta/gamma/theta/vega). Filter by expiration, days-to-expiration, delta, side, and liquidity. Example: marketdata_option_chain({ underlyingSymbol: “AAPL”, expiration: “2026-01-16”, side: “call”, minOpenInterest: 100, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
underlyingSymbolstringyesUnderlying ticker symbol, e.g. “AAPL”, “SPY”, “TSLA”
expirationstringnoFilter to a specific expiration date (YYYY-MM-DD) or “all” for every expiration. Optional.
dtenumbernoFilter to contracts with this many days to expiration (nearest match). Optional.
deltastringnoDelta-based strike selection, e.g. “0.30” or a range “.20-.40”. Optional.
sidestringnoContract side: “call” or “put”. Optional (returns both if omitted).
strikeLimitnumbernoLimit the number of strikes returned (nearest to the money). Optional.
minOpenInterestnumbernoOnly return contracts with at least this open interest. Optional.
datestringnoHistorical snapshot date (YYYY-MM-DD) for a past chain. Optional (defaults to live).
_apiKeystringyesMarket Data App API token. Get one at ${SIGNUP_URL} (auth docs: ${AUTH_DOCS_URL})

Example call

curl -X POST https://gateway.pipeworx.io/marketdata-app/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"marketdata_option_chain","arguments":{}}}'

Connect

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

{
  "mcpServers": {
    "marketdata-app": {
      "url": "https://gateway.pipeworx.io/marketdata-app/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 9, 2026