A Share MCP

get_trade_dates

Retrieve trading day data within a specified date range from the A-share market. Returns a markdown table indicating trading days (1) and non-trading days (0) for informed analysis.

Instructions

Fetches trading dates information within a specified range. Args: start_date: Optional. Start date in 'YYYY-MM-DD' format. Defaults to 2015-01-01 if None. end_date: Optional. End date in 'YYYY-MM-DD' format. Defaults to the current date if None. Returns: Markdown table indicating whether each date in the range was a trading day (1) or not (0).

Input Schema

NameRequiredDescriptionDefault
end_dateNo
start_dateNo

Input Schema (JSON Schema)

{ "properties": { "end_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "End Date" }, "start_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Start Date" } }, "title": "get_trade_datesArguments", "type": "object" }
ID: gnd6bi7pjh