mutual_funds
Retrieve mutual fund data including NAV, returns, and details from Indian stock exchanges to analyze investment options.
Instructions
Mutual Funds Endpoint: /mutual_funds Method: GET Description: Retrieve the latest data for mutual funds, including net asset value (NAV), returns, and other details. Example Request: http GET /mutual_funds Example Response: ```json { \
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:56-61 (registration)The "mutual_funds" tool is not explicitly defined as a Python function, but is registered automatically by FastMCP.from_openapi() using the definition provided in the OPENAPI_SPEC variable.
mcp = FastMCP.from_openapi( openapi_spec=openapi_dict, client=client, name="indian_stock_exchange_api2", version=__version__ )