groww
Trade stocks and manage portfolio on Groww (Indian broker). Use when user asks about Indian stocks, NSE/BSE prices, portfolio holdings, placing buy/sell orders, checking order status, or any Groww-related trading queries. Supports live quotes, LTP, OHLC, historical candles, and order management.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/pushp1997/growwGroww Trading
Trade Indian stocks via Groww. Supports portfolio management, market data, and order execution.
Setup
- Get API key from Groww app: Stocks → Settings → API Trading → Generate API key
- Add to OpenClaw config:
openclaw configure # Add env: GROWW_API_KEY=your_key_here
MCP Server Usage
The groww-mcp server is configured. Call tools via mcporter:
# Portfolio
mcporter call groww-mcp.portfolio
# Market data
mcporter call groww-mcp.market-data action=live-quote symbol=TATAMOTORS
mcporter call groww-mcp.market-data action=ltp symbols=TATAMOTORS,RELIANCE
mcporter call groww-mcp.market-data action=ohlc symbol=TCS
# Orders
mcporter call groww-mcp.place_order symbol=TATAMOTORS quantity=10 side=BUY type=MARKET
mcporter call groww-mcp.order_status orderId=ABC123
mcporter call groww-mcp.cancel_order orderId=ABC123
Direct API (Alternative)
If MCP has issues, use the Groww API directly:
Base URL
https://api.groww.in/v1/
Headers
Authorization: Bearer $GROWW_API_KEY
Accept: application/json
Content-Type: application/json
Endpoints
Portfolio/Holdings:
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/holdings/user"
Live Quote:
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/live-data/quote?exchange=NSE&segment=CASH&trading_symbol=TATAMOTORS"
LTP (Last Traded Price):
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/live-data/ltp?segment=CASH&exchange_symbols=NSE:TATAMOTORS,NSE:RELIANCE"
OHLC:
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/live-data/ohlc?segment=CASH&exchange_symbols=NSE:TATAMOTORS"
Historical Candles:
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/historical/candle/range?exchange=NSE&segment=CASH&trading_symbol=TATAMOTORS&interval=5m&start_time=2024-06-01T09:15:00&end_time=2024-06-01T15:30:00"
Place Order:
curl -X POST -H "Authorization: Bearer $GROWW_API_KEY" \
-H "Accept: application/json" -H "Content-Type: application/json" \
-d '{"trading_symbol":"TATAMOTORS","quantity":10,"validity":"DAY","exchange":"NSE","segment":"CASH","product":"CNC","order_type":"MARKET","transaction_type":"BUY"}' \
"https://api.groww.in/v1/order/create"
Order Status:
curl -H "Authorization: Bearer $GROWW_API_KEY" -H "Accept: application/json" \
"https://api.groww.in/v1/order/detail/{groww_order_id}?segment=CASH"
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-pushp1997-groww": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
cloudflare-dns
Manage Cloudflare DNS records via API. Use when user asks to list, create, update, or delete DNS records, set up DDNS, manage domains on Cloudflare, or check DNS propagation. Supports A, AAAA, CNAME, TXT, MX, and other record types.
ovh
Manage OVHcloud services via API. Use when user asks about OVH domains, DNS records, VPS, cloud instances, dedicated servers, email, SSL certificates, or any OVH service management. Supports listing, creating, updating, and deleting resources.
firefly-iii
Manage personal finances via Firefly III API. Use when user asks about budgets, transactions, accounts, categories, piggy banks, subscriptions, recurring transactions, or financial reports. Supports creating, listing, updating transactions; managing accounts and balances; setting budgets; tracking savings goals.