# Send Groww to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "groww",
    "name": "Groww",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/pushp1997/groww",
    "canonicalUrl": "https://clawhub.ai/pushp1997/groww",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/groww",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=groww",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "groww",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:47:40.582Z",
      "expiresAt": "2026-05-07T04:47:40.582Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=groww",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=groww",
        "contentDisposition": "attachment; filename=\"groww-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "groww"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/groww"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/groww",
    "downloadUrl": "https://openagent3.xyz/downloads/groww",
    "agentUrl": "https://openagent3.xyz/skills/groww/agent",
    "manifestUrl": "https://openagent3.xyz/skills/groww/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/groww/agent.md"
  }
}
```
## Documentation

### Groww 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"

Cancel Order:

curl -X POST -H "Authorization: Bearer $GROWW_API_KEY" \\
  -H "Accept: application/json" -H "Content-Type: application/json" \\
  -d '{"segment":"CASH","groww_order_id":"ABC123"}' \\
  "https://api.groww.in/v1/order/cancel"

### Stock Symbols

Use NSE trading symbols:

TATAMOTORS, RELIANCE, TCS, INFY, HDFCBANK
WIPRO, ICICIBANK, SBIN, BHARTIARTL, ITC

### Market Hours

Pre-open: 9:00 - 9:15 AM IST
Trading: 9:15 AM - 3:30 PM IST
Monday to Friday (except holidays)

### Example Queries

"Show my Groww portfolio"
"What's TATAMOTORS price?"
"Buy 10 RELIANCE shares"
"Sell 5 TCS at limit 4200"
"Cancel order ABC123"
"Get historical data for INFY"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: pushp1997
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T04:47:40.582Z
- Expires at: 2026-05-07T04:47:40.582Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/groww)
- [Send to Agent page](https://openagent3.xyz/skills/groww/agent)
- [JSON manifest](https://openagent3.xyz/skills/groww/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/groww/agent.md)
- [Download page](https://openagent3.xyz/downloads/groww)