fund_info
Retrieve essential fund information including basic details and specifications by providing the fund code through the Xueqiu MCP server.
Instructions
获取基金基本信息
Args:
fund_code: 基金代码
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fund_code | No | SZ000002 |
Implementation Reference
- main.py:409-417 (handler)The handler function for the 'fund_info' MCP tool. It is decorated with @mcp.tool() for registration and executes the core logic by calling ball.fund_info(fund_code) from pysnowball library and processing the result with process_data.@mcp.tool() def fund_info(fund_code: str="SZ000002") -> dict: """获取基金基本信息 Args: fund_code: 基金代码 """ result = ball.fund_info(fund_code) return process_data(result)