get_zz500_stocks
Retrieve the constituent stocks of the CSI 500 Index for a specific or latest date on the A Share MCP server. Outputs a markdown table for easy analysis of A-share market data.
Instructions
Fetches the constituent stocks of the CSI 500 Index for a given date.
Args:
date: Optional. The date in 'YYYY-MM-DD' format. If None, uses the latest available date.
Returns:
Markdown table with CSI 500 constituent stocks or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
}
},
"title": "get_zz500_stocksArguments",
"type": "object"
}