marketdata_option_quote

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

Get a live/delayed quote plus greeks for a single option contract, identified by its OCC option symbol. Returns bid/ask/mid/last, volume, open interest, IV, delta/gamma/theta/vega, and intrinsic/extrinsic value. Example: marketdata_option_quote({ optionSymbol: “AAPL260116C00150000”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
optionSymbolstringyesOCC-formatted option symbol, e.g. “AAPL260116C00150000” (AAPL 2026-01-16 $150 call).
datestringnoHistorical end-of-day quote for a specific trading day (YYYY-MM-DD). Optional.
_apiKeystringyesMarket Data App API token. Get one at ${SIGNUP_URL}

Example call

Arguments

{
  "optionSymbol": "AAPL260116C00150000",
  "_apiKey": "your-marketdata-app-api-key"
}

curl

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_quote","arguments":{"optionSymbol":"AAPL260116C00150000","_apiKey":"your-marketdata-app-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('marketdata_option_quote', {
  "optionSymbol": "AAPL260116C00150000",
  "_apiKey": "your-marketdata-app-api-key"
});

More examples

{
  "optionSymbol": "SPY260221P00450000",
  "date": "2026-01-15",
  "_apiKey": "your-marketdata-app-api-key"
}

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 August 24, 2026