groww-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NODE_ENV | No | Runtime environment | development |
| MOCK_MODE | No | Set to true for demo data, no real API calls | false |
| GROWW_BASE_URL | No | Base URL for the Groww API | https://api.groww.in/v1 |
| GROWW_API_TOKEN | No | Groww API token for authentication. Required unless MOCK_MODE is set to true. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_holdingsB | Fetch all current equity holdings with avg buy price, current value, P&L % |
| get_portfolio_summaryC | Total invested, current value, total P&L, day's P&L |
| get_positionsB | Intraday open positions with unrealized P&L |
| get_order_historyB | Past orders with status, optionally filter by date range |
| get_quoteC | LTP, bid/ask, open, high, low, volume for a symbol (NSE/BSE) |
| search_stocksC | Fuzzy search stocks and MFs by name or ticker |
| get_ohlc_dataC | OHLC candles for a symbol — supports 1d/1w/1m/1y intervals |
| get_top_moversB | Top 5 gainers and losers for the day |
| get_market_statusA | Check if NSE/BSE is currently open for trading |
| place_orderB | Place BUY/SELL order — supports MARKET/LIMIT, CNC/MIS/NRML product types |
| cancel_orderC | Cancel a pending order by order ID |
| modify_orderC | Modify price/quantity of a pending limit order |
| get_order_statusC | Real-time status of a specific order |
| get_watchlistB | List all watchlist symbols with LTP and day change |
| add_to_watchlistC | Add a stock symbol to your watchlist |
| remove_from_watchlistC | Remove a stock symbol from your watchlist |
| list_sipsB | All active SIPs with fund name, amount, next date |
| create_sipC | Create a new SIP with fund ISIN, amount, frequency, and start date |
| pause_sipC | Pause an active SIP temporarily |
| cancel_sipC | Cancel a SIP permanently |
| search_fundsC | Search mutual funds by name, category, or AMC |
| get_fund_detailsA | NAV, AUM, expense ratio, returns (1y/3y/5y), risk grade for a mutual fund |
| invest_in_fundC | One-time lumpsum investment in a mutual fund |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 23 tools
Each tool has a clearly distinct purpose with no significant overlap. For example, get_quote provides real-time price data, get_ohlc_data offers historical chart data, and get_fund_details focuses on mutual fund metrics. Even related tools like place_order and modify_order are clearly differentiated by their specific actions.
All tools follow a consistent verb_noun naming pattern (e.g., get_quote, place_order, search_funds). The verbs are appropriately descriptive (get, add, cancel, create, etc.) and the nouns clearly identify the target resource, creating a highly predictable and readable naming convention throughout the set.
With 23 tools, the count is slightly high but reasonable for a comprehensive trading and investment platform covering stocks, mutual funds, orders, SIPs, and watchlists. Each tool appears to serve a specific, necessary function without obvious redundancy, though the number approaches the upper limit of what feels well-scoped.
The tool set provides complete coverage for core trading and investment workflows. It includes market data (quote, OHLC, status), order management (place, modify, cancel, history), portfolio tracking (holdings, summary, positions), mutual fund operations (invest, SIP management, search), and watchlist management. No obvious gaps exist for the domain.