A Share MCP

get_operation_data

Retrieve quarterly operation capability data, such as turnover ratios, for a specific stock by providing its code, year, and quarter. Returns results in a markdown table format.

Instructions

Fetches quarterly operation capability data (e.g., turnover ratios) for a stock. Args: code: The stock code (e.g., 'sh.600000'). year: The 4-digit year (e.g., '2023'). quarter: The quarter (1, 2, 3, or 4). Returns: Markdown table with operation capability data or an error message.

Input Schema

NameRequiredDescriptionDefault
codeYes
quarterYes
yearYes

Input Schema (JSON Schema)

{ "properties": { "code": { "title": "Code", "type": "string" }, "quarter": { "title": "Quarter", "type": "integer" }, "year": { "title": "Year", "type": "string" } }, "required": [ "code", "year", "quarter" ], "title": "get_operation_dataArguments", "type": "object" }
ID: gnd6bi7pjh