fund_manager
Retrieve detailed information about fund managers for specific investment funds using Xueqiu MCP's financial data service.
Instructions
获取基金经理信息
Args:
fund_code: 基金代码
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fund_code | No | SZ000002 |
Implementation Reference
- main.py:464-472 (handler)The main handler function for the 'fund_manager' tool, decorated with @mcp.tool(). It calls the pysnowball library's fund_manager method and processes the result using process_data.@mcp.tool() def fund_manager(fund_code: str="SZ000002") -> dict: """获取基金经理信息 Args: fund_code: 基金代码 """ result = ball.fund_manager(fund_code) return process_data(result)