A Share MCP

get_stock_industry

Retrieve industry classification data for a specific stock or all stocks on a selected date using A Share MCP. Outputs results in a markdown table for clear analysis.

Instructions

Fetches industry classification for a specific stock or all stocks on a given date. Args: code: Optional. The stock code (e.g., 'sh.600000'). If None, fetches for all stocks. date: Optional. The date in 'YYYY-MM-DD' format. If None, uses the latest available date. Returns: Markdown table with industry classification data or an error message.

Input Schema

NameRequiredDescriptionDefault
codeNo
dateNo

Input Schema (JSON Schema)

{ "properties": { "code": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Code" }, "date": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Date" } }, "title": "get_stock_industryArguments", "type": "object" }
ID: gnd6bi7pjh