Adonis - Zerodha Trading 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., "@Adonis - Zerodha Trading MCP Servershow my current portfolio positions"
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.
Adonis - Zerodha Trading MCP Server
Adonis - A powerful AI trading assistant for the Indian stock market
Features • Quick Start • Documentation • Examples • Contributing
Table of Contents
Related MCP server: Zerodha MCP Server
Overview
Adonis is a sophisticated trading assistant that bridges AI systems with the Indian stock market through Zerodha's Kite Connect API. Built on the Model Context Protocol (MCP), Adonis enables seamless integration of trading capabilities, real-time market analysis, and intelligent portfolio management into AI workflows.
What is MCP?
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely access external data sources and tools. Adonis implements MCP to provide AI systems with comprehensive trading capabilities and market intelligence.
Features
Feature | Description | Status |
Real-time Market Data | Live stock prices, quotes, and market depth | Ready |
AI-Powered Analysis | Sequential thinking with technical indicators | Ready |
F&O Trading | Futures and Options data with Greeks | Ready |
Portfolio Management | Positions, margins, and P&L tracking | Ready |
Risk Management | Built-in safety controls and limits | Ready |
Order Management | Place, modify, and monitor orders | Ready |
MCP Compatible | Works with Claude, GPT, and other AI assistants | Ready |
Secure | Environment-based credential management | Ready |
Prerequisites
Python 3.8+ (Recommended: Python 3.10+)
Zerodha Account with Kite Connect access
API Credentials from Zerodha Kite Connect
MCP-Compatible Client (Claude Desktop, etc.)
Installation
Option 1: Quick Install (Recommended)
# Clone the repository
git clone https://github.com/ameydabhade/adonis-mcp.git
cd adonis-mcp
# Run the installation script
chmod +x install.sh
./install.shOption 2: Manual Setup
# Create virtual environment
python3 -m venv zerodha_mcp_env
source zerodha_mcp_env/bin/activate
# Install dependencies
pip install -r requirements.txt
# Setup configuration
cp config.env.example config.envQuick Start
1. Configure API Credentials
Edit config.env with your Zerodha Kite Connect credentials:
# Get these from: https://kite.trade/connect/login
KITE_API_KEY=your_api_key_here
KITE_API_SECRET=your_api_secret_here2. Generate Access Token
python3 generate_access_token.py3. Start the MCP Server
python3 zerodha_mcp_server.py4. Configure Your AI Client
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"adonis": {
"command": "python3",
"args": ["/path/to/adonis-mcp/zerodha_mcp_server.py"],
"env": {
"PATH": "/path/to/adonis-mcp/zerodha_mcp_env/bin"
}
}
}
}MCP Tools
The server provides 12 comprehensive tools for trading and analysis:
Market Data Tools
Tool | Purpose | Parameters |
| Real-time & historical data | symbol, exchange, interval, days |
| Futures & Options data | symbol, instrument_type, expiry |
| Complete options chain | symbol, expiry |
| Technical analysis | symbol, days, interval |
Trading Tools
Tool | Purpose | Parameters |
| Buy/Sell orders | symbol, transaction_type, quantity, order_type |
| Order status tracking | order_id (optional) |
| Risk management | symbol, stop_loss_price, target_price |
| Stop order tracking | symbol (optional) |
Portfolio Tools
Tool | Purpose | Parameters |
| Current positions | position_type |
| Account margins | segment |
| Risk management status | include_history |
Usage Examples
Basic Market Analysis
# Get NIFTY 50 data
get_market_data(symbol="NIFTY 50", exchange="NSE", days=30)
# Calculate technical indicators
calculate_technical_indicators(symbol="NIFTY 50", days=20)
# Get F&O data for options under ₹4000
get_fno_data(symbol="NIFTY", instrument_type="CE")Trading Operations
# Place a buy order
place_order(
tradingsymbol="RELIANCE",
transaction_type="BUY",
quantity=10,
order_type="MARKET"
)
# Set stop loss
set_stop_loss(
tradingsymbol="RELIANCE",
stop_loss_price=2400,
target_price=2600
)
# Monitor positions
get_positions(position_type="day")Advanced Analysis
# Get complete options chain
get_options_chain(symbol="BANKNIFTY", expiry="2025-09-25")
# Check risk status
get_risk_status(include_history=True)
# Monitor all orders
monitor_orders()Sequential Thinking
The server implements AI-powered sequential thinking for market analysis:
Analysis Process
Data Collection: Real-time prices, volume, technical indicators
Pattern Recognition: Trend analysis, support/resistance levels
Risk Evaluation: Volatility, market conditions, position sizing
Decision Making: BUY/SELL/HOLD with confidence levels
Execution Planning: Entry/exit points, stop-loss levels
Configuration
Environment Variables
Variable | Description | Required | Default |
| Your Kite Connect API key | Yes | - |
| Your Kite Connect API secret | Yes | - |
| Generated access token | Yes | Auto-generated |
| Maximum daily loss limit | No | 10000 |
| Maximum single order value | No | 50000 |
| Trading environment | No | SANDBOX |
Risk Management Settings
# Risk limits
MAX_DAILY_LOSS=10000
MAX_ORDER_VALUE=50000
MAX_ORDERS_PER_MINUTE=10
# Trading defaults
DEFAULT_PRODUCT=MIS
DEFAULT_ORDER_TYPE=MARKET
DEFAULT_EXCHANGE=NSESecurity
Best Practices
Environment Variables: All credentials stored in
config.envGit Ignore: Sensitive files excluded from version control
Token Expiry: Daily access token regeneration
Risk Limits: Built-in trading safeguards
Sandbox Mode: Test environment for development
Credential Management
# DO: Use environment file
echo "KITE_API_KEY=your_key" >> config.env
# DON'T: Hardcode in scripts
api_key = "your_key_here" # NEVER DO THISAPI Reference
Complete Tool Documentation
get_market_data
Fetch real-time and historical market data for any instrument.
Parameters:
symbol(string): Trading symbol (e.g., "RELIANCE", "NIFTY 50")exchange(string): Exchange name (NSE, BSE)interval(string): Time interval (minute, day, 3minute, etc.)days(integer): Number of days of historical data
Returns:
Current price and change
OHLC data
Volume information
Market depth
place_order
Place buy or sell orders with comprehensive parameters.
Parameters:
tradingsymbol(string): Instrument to tradetransaction_type(string): "BUY" or "SELL"quantity(integer): Number of shares/lotsorder_type(string): "MARKET", "LIMIT", "SL", "SL-M"price(float): Limit price (for LIMIT orders)product(string): "MIS", "CNC", "NRML"
Returns:
Order ID
Status confirmation
Execution details
Error Handling
The server implements comprehensive error handling:
# API errors
{
"error": "Invalid API credentials",
"code": "AUTH_ERROR",
"details": "Check your API key and secret"
}
# Trading errors
{
"error": "Insufficient margin",
"code": "MARGIN_ERROR",
"available": 5000,
"required": 10000
}Troubleshooting
Common Issues
Issue | Solution |
Import Error: No module 'mcp' | Run: |
Authentication Failed | Check API credentials in |
Access Token Expired | Run: |
Connection Timeout | Verify internet connection and API status |
Order Rejected | Check margins and market hours |
Debug Mode
Enable detailed logging:
# Set environment variable
export LOG_LEVEL=DEBUG
# Run with verbose output
python3 zerodha_mcp_server.py --debugHealth Check
Verify your setup:
# Run setup diagnostics
python3 setup.py
# Test basic connectivity
python3 -c "from zerodha_mcp_wrapper import *; print('All imports successful')"Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Setup
# Fork and clone the repository
git clone https://github.com/yourusername/adonis-mcp.git
# Create development environment
python3 -m venv dev_env
source dev_env/bin/activate
# Install development dependencies
pip install -r requirements-dev.txt
# Run tests
pytest tests/Code Standards
Black for code formatting
Flake8 for linting
Type hints for better code documentation
Docstrings for all public functions
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
Get Help
Documentation: Check our comprehensive guides
Issues: GitHub Issues
Email: support@example.com
Discord: Join our community
Zerodha Resources
Acknowledgments
Zerodha for providing the excellent Kite Connect API
Anthropic for the Model Context Protocol specification
Open Source Community for various Python libraries used
Built with love for algorithmic trading and market analysis
Star this repository if it helped you!
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
- Flicense-qualityDmaintenanceAn automated trading bot that interfaces with Zerodha to execute stock trades, manage positions, and access market information through natural language commands.1
- Flicense-qualityDmaintenanceEnables AI assistants to interact with the Zerodha trading platform for placing stock orders, viewing portfolio holdings, and managing mutual fund investments. Provides secure OAuth authentication and real-time trading capabilities through Zerodha's official API.1
- Flicense-qualityDmaintenanceEnables natural language access to Zerodha trading accounts for retrieving portfolio holdings, positions, orders, funds, and real-time market prices. Supports secure authentication for Indian stock market trading operations via Claude, Cursor, and other MCP-compatible AI tools.1
- Flicense-qualityDmaintenanceEnables AI models to interact with the Zerodha trading platform for portfolio management, trading, and account operations through natural language.3
Related MCP Connectors
Open-source MCP server for Zerodha Kite Connect. Portfolio, market data, backtesting, alerts.
Build, backtest, and deploy quantitative trading strategies from your AI agent.
Connect your Necton account to AI via Brazil's Open Finance: balances, statements, cards, investment
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/ameydabhade/adonis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server