icici-mcp
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., "@icici-mcpBuy 50 Reliance at market price"
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.
MCP server for ICICI Direct -- trade Indian stocks through natural conversation with any MCP-compatible AI assistant.
Why an MCP server instead of a Python library?
Traditional Breeze Connect wrappers require you to write Python code to trade. With icici-mcp, you just talk:
You: "Buy 50 Reliance at market price"
Assistant: checks quote, verifies funds, asks for confirmation, places order
You: "How's my portfolio doing?"
Assistant: fetches holdings, calculates P&L, summarizes gainers and losers
You: "Show me the NIFTY option chain for next expiry"
Assistant: fetches option chain data with strikes, premiums, and OINo code. No scripts. No terminal. Just conversation.
icici-mcp connects any MCP-compatible AI assistant directly to your ICICI Direct account with 14 trading tools, automated TOTP login, and auto-retry on expired tokens.
How it works
You (natural language) --> AI Assistant --> icici-mcp (MCP server) --> ICICI Direct Breeze APIYour AI assistant interprets your intent, maps stock names to symbols (e.g., "Infosys" to INFY), checks your funds, and executes trades -- all through the MCP protocol. The server handles authentication automatically, including daily token refresh via TOTP.
Features
14 tools for complete trading control:
Tool | Description |
| Auto-authenticate with TOTP |
| Portfolio holdings with P&L |
| All shares in your demat account |
| Today's open positions |
| Order history for a date range |
| Available margins for trading |
| Available funds in your account |
| Live market quotes (equity and F&O) |
| Historical OHLCV candle data |
| Option chain quotes with strikes and premiums |
| Place buy/sell orders (market, limit, stop-loss) |
| Modify pending orders |
| Cancel pending orders |
| Square off open positions |
Key capabilities:
Fully automated login -- TOTP generated on the fly, no manual intervention
Auto-retry on stale tokens -- re-authenticates transparently if a token expires mid-session
Option chain data for F&O analysis
Supports equity (cash), futures, options, margin, and BTST orders
Compatible with
Works with any MCP-compatible client, including:
Client | Platform |
macOS, Windows | |
Terminal (macOS, Linux, Windows) | |
macOS, Windows, Linux | |
macOS, Windows, Linux | |
VS Code, JetBrains | |
Any MCP-compatible client | See MCP clients list |
Quick Start
1. Install
pip install icici-mcp
playwright install chromiumNote: The
playwright install chromiumstep is required once for automated TOTP login. It downloads a headless Chromium browser (~90MB) used to log in to ICICI Direct automatically.
2. Get your credentials
You need an ICICI Direct API app. From your app dashboard, note your API Key and API Secret.
You also need:
User ID -- your ICICI Direct client ID
Password -- your ICICI Direct login password
TOTP Secret (recommended) -- the base32 seed from setting up an external authenticator app for ICICI Direct 2FA. This enables fully automated login with no manual steps.
Log in to secure.icicidirect.com
Go to Profile > Security Settings > 2FA / TOTP Settings
Choose to set up an external authenticator app (Google Authenticator, Authy, etc.)
When the QR code appears, look for a "Can't scan? Copy this key" link or use a QR decoder to extract the secret
That key is your TOTP secret -- save it before completing setup
Enter the 6-digit code from your authenticator to finish
3. Configure your MCP client
Add this to your MCP client configuration. The config location depends on your client -- refer to your client's documentation for the exact path.
{
"mcpServers": {
"icici": {
"command": "icici-mcp",
"env": {
"ICICI_API_KEY": "your-api-key",
"ICICI_API_SECRET": "your-api-secret",
"ICICI_USER_ID": "your-user-id",
"ICICI_PASSWORD": "your-password",
"ICICI_TOTP_SECRET": "your-totp-secret",
"ICICI_SESSION_TOKEN": ""
}
}
}
}Restart your MCP client. You're ready to trade.
4. Try it out
Open a new chat and try:
"Show my portfolio holdings"
"What's Reliance trading at?"
"Buy 10 Infosys at market price"
"How much cash do I have available?"
"Cancel my last pending order"
"Show me NIFTY option chain for the nearest expiry"
The AI assistant understands stock names in plain English -- no need to use trading symbols.
Environment Variables
Variable | Required | Description |
| Yes | ICICI Direct API key |
| Yes | ICICI Direct API secret |
| Yes | ICICI Direct client ID |
| Yes | ICICI Direct login password |
| No | TOTP base32 seed for auto-login. Without this, you must run |
| No | Manual session token from the ICICI Direct API login page. Use this if you cannot set up TOTP auto-login. |
Manual Login
If you don't have a TOTP secret, you can log in manually each day:
Option 1: Use the CLI tool
export ICICI_API_KEY=your-api-key
export ICICI_API_SECRET=your-api-secret
export ICICI_USER_ID=your-user-id
export ICICI_PASSWORD=your-password
icici-mcp-loginThis caches the session token for the rest of the day. The MCP server will use the cached token until it expires.
Option 2: Set ICICI_SESSION_TOKEN directly
Visit
https://api.icicidirect.com/apiuser/login?api_key=YOUR_API_KEYComplete the login flow manually
Copy the
apisessionvalue from the redirect URLSet it as
ICICI_SESSION_TOKENin your MCP client config
Use Cases
Daily portfolio monitoring -- "Give me a summary of my portfolio with top gainers and losers"
Quick trades -- "Buy 50 Reliance" / "Sell all my Yes Bank"
F&O trading -- "Show me BANKNIFTY option chain" / "Buy 1 lot NIFTY 25000 CE"
Research + action -- "What's the 52-week high of HDFC Bank? Should I add more at current levels?"
Position management -- "Square off all my margin positions"
Scheduled reports -- Combine with MCP scheduled tasks to get a daily portfolio summary at 9am
Roadmap
Basket orders -- place multiple orders in one command
Mutual fund tools -- buy, redeem, check SIPs
IPO application tools
Portfolio analytics -- sector allocation, diversification score
Multi-account support
Have an idea? Open a feature request.
Development
git clone https://github.com/aranjan/icici-mcp.git
cd icici-mcp
python -m venv venv
source venv/bin/activate
pip install -e .Security
Credentials are passed via environment variables -- never stored in code
Session tokens are cached locally at
~/.icici_direct_token.jsonand expire dailyThe server runs locally on your machine -- no data is sent to third-party servers
All communication with ICICI Direct uses HTTPS
License
MIT
This server cannot be installed
Maintenance
Latest Blog Posts
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/aranjan/icici-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server