A Share MCP

get_stock_analysis

Generate data-driven stock analysis reports for A-share market stocks by providing a stock code and analysis type (fundamental, technical, or comprehensive). Includes key financial metrics, historical performance, and industry comparisons.

Instructions

提供基于数据的股票分析报告,而非投资建议。 Args: code: 股票代码,如'sh.600000' analysis_type: 分析类型,可选'fundamental'(基本面)、'technical'(技术面)或'comprehensive'(综合) Returns: 数据驱动的分析报告,包含关键财务指标、历史表现和同行业比较

Input Schema

NameRequiredDescriptionDefault
analysis_typeNofundamental
codeYes

Input Schema (JSON Schema)

{ "properties": { "analysis_type": { "default": "fundamental", "title": "Analysis Type", "type": "string" }, "code": { "title": "Code", "type": "string" } }, "required": [ "code" ], "title": "get_stock_analysisArguments", "type": "object" }
ID: gnd6bi7pjh