DOS Growth MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DOS Growth MCP ServerWhat's my available balance?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ DOS Growth MCP Server (Python)
Ask an AI assistant questions about your connected trading account in plain English with DOS Growth.
Live service: https://dos-growth-mcp.onrender.com
DOS Growth connects a supported brokerage account to Claude or any other MCP-compatible AI client. Once configured, you can ask for your portfolio value, balances, holdings, market data, option chains, and more without switching tabs.
What is MCP? Model Context Protocol (MCP) is an open standard that lets AI assistants connect to external tools and live data.
โจ What can DOS Growth do?
Once connected, your AI client gains access to 18 tools:
Category | Example request |
๐ผ Account & Portfolio | "What's my available balance?" / "Show my holdings" |
๐ Order Management | "Place a limit order for 10 shares of INFY at โน1,800" |
๐ง Smart Orders (GTT/OCO) | "Set a trigger order if RELIANCE crosses โน2,500" |
๐ Market Data | "Get the LTP for TCS and WIPRO" / "Show OHLC data" |
โก Derivatives (FNO) | "Show the NIFTY option chain" / "What are the greeks?" |
dos_growth_get_profileโ Brokerage account profiledos_growth_get_balanceโ Available margins and cash balancedos_growth_get_holdingsโ Equity holdingsdos_growth_get_positionsโ Live positions (Cash or FNO)dos_growth_place_orderโ Market, Limit, SL, and SL-M ordersdos_growth_modify_orderโ Edit a pending orderdos_growth_cancel_orderโ Cancel an open orderdos_growth_create_smart_orderโ GTT or OCO smart ordersdos_growth_cancel_smart_orderโ Cancel a smart-order legdos_growth_get_smart_order_listโ View active smart ordersdos_growth_get_quoteโ Price, volume, and market-depth datados_growth_get_ltpโ Last Traded Price for multiple symbolsdos_growth_get_ohlcโ Open, High, Low, and Close valuesdos_growth_get_historical_candlesโ Historical data for analysisdos_growth_get_option_chainโ Option chains for indices and stocksdos_growth_get_greeksโ Delta, Theta, Gamma, and Vegados_growth_get_expiriesโ Available expiry datesdos_growth_get_contractsโ Contracts for a selected expiry
Related MCP server: Interactive Brokers MCP Server
๐ ๏ธ Setup guide
Time needed: About 10 minutes. No prior coding experience is required.
Step 1 โ Get the code
Clone your DOS Growth repository:
git clone <your-dos-growth-repository-url> dos-growth
cd dos-growthAlternatively, use the repository page's Code โ Download ZIP option and extract the archive.
Step 2 โ Install uv
uv installs and runs this Python project. Follow the official uv installation guide, then verify it:
uv --versionStep 3 โ Create your brokerage API keys
DOS Growth currently integrates with the Groww Trade API through its official Python SDK.
Open the Trade API keys page.
Sign in and create an API key and API secret.
Store both credentials securely.
Treat these credentials like a password. Never share them or commit them to Git.
Step 4 โ Configure DOS Growth
Copy .env.example to a new file named .env.local, then enter your credentials:
DOS_GROWTH_API_KEY=your_api_key_here
DOS_GROWTH_API_SECRET=your_api_secret_here
# Optional: DOS_GROWTH_API_TOKEN=your_predefined_token_if_availableFor compatibility with earlier installations, GROWW_API_KEY, GROWW_API_SECRET, and GROWW_API_TOKEN are also accepted as fallback names.
Step 5 โ Install dependencies and start DOS Growth
uv sync
uv run main.pyThe server runs at http://127.0.0.1:8000. Keep the terminal open while using an MCP client.
Step 6 โ Connect Claude Desktop
Open Claude Desktop, go to Settings โ Developer, and select Edit Config. Add:
{
"mcpServers": {
"dos_growth": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8000/sse"
]
}
}
}Save the configuration and restart Claude Desktop. DOS Growth should appear as a connected MCP server.
Step 7 โ Try it
"What is my current account balance?"
"Show me my holdings."
"What's the LTP for RELIANCE and TCS?"
โ๏ธ Free cloud deployment on Render
The included Dockerfile and render.yaml deploy DOS Growth as a free Render web service with an HTTPS onrender.com subdomain.
Configure these values as Render secrets during deployment:
DOS_GROWTH_ACCESS_TOKENโ a long, random token that protects the MCP endpointsDOS_GROWTH_API_KEYandDOS_GROWTH_API_SECRETโ your brokerage API credentialsDOS_GROWTH_API_TOKENโ optional pre-generated brokerage token
The public health endpoint is /health, and the protected MCP endpoint is /sse.
Use the deployed service from Claude Desktop on Windows with this configuration, replacing the URL and token:
{
"mcpServers": {
"dos_growth": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://dos-growth-mcp.onrender.com/sse",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer replace_with_your_access_token"
}
}
}
}Never put the access token or brokerage credentials in Git. Render stores these values as encrypted environment secrets.
๐ Other MCP clients
Any MCP-compatible client can connect while DOS Growth is running:
SSE endpoint:
http://127.0.0.1:8000/sse
๐งช Test with MCP Inspector
npx @modelcontextprotocol/inspector uv run main.pyThis opens a browser interface where developers can call each tool and inspect its response.
โ Troubleshooting
DOS Growth does not appear as a connected tool
Make sure the server is running, save the MCP client configuration, and restart the client.
uv: command not found
Restart the terminal after installing uv. If needed, review the uv installation guide.
DOS_GROWTH_API_KEY is missing or authentication fails
Confirm .env.local is in the project root and that the variable names are spelled exactly as shown.
Port 8000 is already in use
Stop the other process using that port before starting DOS Growth.
๐ Project identity
App: DOS Growth
Company: DOS
Developer: Dikshu
License: MIT
Developed for the community by Dikshu at DOS.
โ ๏ธ Disclaimer: DOS Growth is an unofficial, community-built wrapper for the Groww Trade API. DOS Growth, DOS, and Dikshu are not affiliated with or endorsed by Groww. Trading involves financial risk. Use this software at your own discretion and always verify orders before placing them.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables AI assistants to interact with Interactive Brokers trading accounts to retrieve market data, check positions, and place trades. Includes pre-configured IB Gateway and handles OAuth authentication automatically.14345205MIT
- Flicense-qualityDmaintenanceConnects AI assistants to Interactive Brokers for intelligent portfolio management, options analysis, risk monitoring, and automated trading strategy suggestions. Enables real-time account tracking, Greeks calculations, option chain analysis, and playbook-based risk adjustments through natural language.5
- Alicense-qualityDmaintenanceEnables natural language trading operations for stocks, options, crypto, and portfolio management via Alpaca's Trading API through AI assistants.MIT
- Alicense-qualityCmaintenanceConnects your TastyTrade trading account to AI assistants like Claude Desktop and ChatGPT for conversational trading and portfolio management.5MIT
Related MCP Connectors
Connect AI agents to bank accounts, transactions, balances, and investments.
Connect your Necton account to AI via Brazil's Open Finance: balances, statements, cards, investment
Connect your Toro account to AI via Brazil's Open Finance: balances, statements, cards, investments.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dikshu143644/dos-growth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server