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
| Name | Type | Required | Description |
|---|---|---|---|
optionSymbol | string | yes | OCC-formatted option symbol, e.g. “AAPL260116C00150000” (AAPL 2026-01-16 $150 call). |
date | string | no | Historical end-of-day quote for a specific trading day (YYYY-MM-DD). Optional. |
_apiKey | string | yes | Market Data App API token. Get one at ${SIGNUP_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_quote","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.