Finance Tools MCP

MIT License
16
  • Apple

get_options

Retrieve options with the highest open interest for a specific ticker symbol, filtered by date range, strike price, and type (calls or puts). Simplify market trend analysis and decision-making.

Instructions

Get options with highest open interest. Dates: YYYY-MM-DD. Type: C=calls, P=puts.

Input Schema

NameRequiredDescriptionDefault
end_dateNo
num_optionsNo
option_typeNo
start_dateNo
strike_lowerNo
strike_upperNo
ticker_symbolYes

Input Schema (JSON Schema)

{ "properties": { "end_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "End Date" }, "num_options": { "default": 10, "title": "Num Options", "type": "integer" }, "option_type": { "anyOf": [ { "enum": [ "C", "P" ], "type": "string" }, { "type": "null" } ], "default": null, "title": "Option Type" }, "start_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Start Date" }, "strike_lower": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null, "title": "Strike Lower" }, "strike_upper": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": null, "title": "Strike Upper" }, "ticker_symbol": { "title": "Ticker Symbol", "type": "string" } }, "required": [ "ticker_symbol" ], "title": "get_optionsArguments", "type": "object" }
ID: o7bclp5ave