moneycontrol_search
Search Moneycontrol by name to resolve stock or index identifiers (sc_id) needed for quotes, fundamentals, technicals, and index data.
Instructions
Search Moneycontrol for a stock or index and resolve its identifiers.
Use this FIRST to obtain a stock's sc_id (needed by moneycontrol_get_quote,
moneycontrol_get_fundamentals, moneycontrol_get_technicals) or to discover an
index name accepted by moneycontrol_get_index.
Args: params (SearchInput): - query (str): Name to search. - kind (str): 'stock' (default) or 'index'. - limit (int): Max results (1-25, default 10). - response_format (ResponseFormat): 'markdown' or 'json'.
Returns: str: Matches. Each record has: { "sc_id": str, # Moneycontrol id, e.g. "RI" — pass to quote/fundamentals "name": str, # Display name "symbol": str, # Trading symbol, e.g. "RELIANCE" "isin": str, # ISIN if available "bse_code": str, # BSE numeric code if available "sector": str, "link": str # Moneycontrol page URL } Returns "No matches..." when nothing is found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |