mutual_fund_search
Search for mutual funds in the Indian stock market by entering a fund name or keyword to find relevant investment options.
Instructions
Mutual Fund Search Endpoint: GET /mutual_fund_search Description: This endpoint allows you to search for mutual funds. Parameters: - query (string, required): The search term to query the mutual funds. Response: ```json [ { \
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Example value: nippon |
Implementation Reference
- server.py:56-61 (registration)The tool "mutual_fund_search" is dynamically registered via FastMCP.from_openapi, using the OPENAPI_SPEC provided in the same file.
mcp = FastMCP.from_openapi( openapi_spec=openapi_dict, client=client, name="indian_stock_exchange_api2", version=__version__ )