intrinio_options_chain
Pack: intrinio · Endpoint: https://gateway.pipeworx.io/intrinio/mcp
Options chain with greeks and implied volatility for a symbol at a given expiration — returns strike, type, bid/ask/last, volume, open interest, delta, and IV per contract. Example: intrinio_options_chain({ symbol: “AAPL”, expiration: “2026-01-16”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Underlying ticker, e.g. “AAPL”, “MSFT” |
expiration | string | yes | Expiration date in YYYY-MM-DD format, e.g. “2026-01-16” |
type | string | no | Optional filter: “call” or “put” |
moneyness | string | no | Optional: “all”, “in_the_money”, “out_of_the_money”, or “near_the_money” |
page_size | integer | no | Max contracts to return (default 100) |
_apiKey | string | yes | Intrinio API key (intrinio.com) |
Example call
curl -X POST https://gateway.pipeworx.io/intrinio/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"intrinio_options_chain","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"intrinio": {
"url": "https://gateway.pipeworx.io/intrinio/mcp"
}
}
}
See Getting Started for client-specific install steps.