zerodha-claude-mcp

zerodha-claude-mcp

Enables AI models to interact with the Zerodha trading platform for portfolio management, trading, and account operations through natural language.

Category
Visit Server

README

šŸš€ Zerodha Trading MCP Server -- Claude

<div align="center">

Trading MCP TypeScript Node.js

A powerful Model Context Protocol (MCP) server that enables AI models to interact seamlessly with the Zerodha trading platform

</div>

šŸ“‹ Table of Contents

✨ Features

Feature Description
šŸ” Secure Authentication Robust authentication with Zerodha API using official KiteConnect SDK
šŸ“Š Portfolio Management Real-time access to your complete portfolio holdings and valuations
šŸ“ˆ Position Tracking Monitor open positions with live P&L calculations
šŸ’¹ Order Execution Place buy/sell orders with market/limit options
šŸ‘¤ Profile Access Retrieve comprehensive user profile and account information
šŸ”„ Real-time Data Live market data and portfolio updates
šŸ›”ļø Type Safety Built with TypeScript and Zod validation for reliability

šŸŽÆ What is MCP?

The Model Context Protocol (MCP) is a standardized way for AI models to interact with external systems and APIs. This server acts as a bridge between AI assistants (like Claude) and the Zerodha trading platform, enabling natural language trading operations.

⚔ Quick Start

Prerequisites

Before you begin, ensure you have:

šŸ“¦ Installation

Step 1: Clone the Repository

# Clone the repository
git clone https://github.com/gamandeepsingh/zerodha-claude-mcp.git

# Navigate to the project directory
cd zerodha-claude-mcp

Step 2: Install Dependencies

Choose your preferred package manager:

# Using npm
npm install

# Using bun (recommended for better performance)
bun install

# Using yarn
yarn install

Step 3: Environment Setup

Create a .env file in the root directory:

# Copy the example environment file
cp .env.example .env

Add your Zerodha credentials to the .env file:

# Zerodha API Configuration
KITE_API_KEY=your_api_key_here
KITE_SECRET_KEY=your_secret_key_here
REQUEST_TOKEN=your_request_token_here
ACCESS_TOKEN=your_access_token_here

# Optional: Debug mode
DEBUG=false

šŸ’” Pro Tip: You can get your API credentials from the Kite Connect Developer Console

🐳 Docker Installation (Alternative)

For a containerized setup, you can use Docker to run the MCP server:

Prerequisites for Docker

  • āœ… Docker - Install Docker
  • āœ… Docker Compose (optional, for easier management) - Usually included with Docker Desktop

Option 1: Using Docker Compose (Recommended)

  1. Clone the repository:

    git clone https://github.com/gamandeepsingh/zerodha-claude-mcp.git
    cd zerodha-claude-mcp
    
  2. Create environment file:

    # Create .env file with your credentials
    cp .env.example .env
    
  3. Edit the .env file with your Zerodha credentials:

    KITE_API_KEY=your_api_key_here
    KITE_SECRET_KEY=your_secret_key_here
    REQUEST_TOKEN=your_request_token_here
    ACCESS_TOKEN=your_access_token_here
    DEBUG=false
    
  4. Build and run with Docker Compose:

    # Build and start the container
    docker-compose up --build
    
    # Run in detached mode (background)
    docker-compose up -d --build
    
  5. Stop the container:

    docker-compose down
    

Option 2: Using Docker directly

  1. Build the Docker image:

    docker build -t zerodha-claude-mcp .
    
  2. Run the container:

    docker run -d \
      --name zerodha-mcp \
      -e KITE_API_KEY=your_api_key \
      -e KITE_SECRET_KEY=your_secret_key \
      -e REQUEST_TOKEN=your_request_token \
      -e ACCESS_TOKEN=your_access_token \
      zerodha-claude-mcp
    

Docker Management Commands

# View running containers
docker ps

# View logs
docker logs zerodha-mcp

# Stop the container
docker stop zerodha-mcp

# Remove the container
docker rm zerodha-mcp

# Remove the image
docker rmi zerodha-claude-mcp

Claude Desktop Configuration with Docker

When using Docker, update your claude_desktop_config.json to point to the containerized version:

{
  "mcpServers": {
    "zerodha-trading": {
      "command": "docker",
      "args": ["exec", "-i", "zerodha-mcp", "bun", "run", "index.ts"],
      "env": {
        "KITE_API_KEY": "your_actual_api_key",
        "KITE_SECRET_KEY": "your_actual_secret_key",
        "REQUEST_TOKEN": "your_actual_request_token",
        "ACCESS_TOKEN": "your_actual_access_token"
      }
    }
  }
}

āš ļø Note: Make sure your Docker container is running before starting Claude Desktop when using this configuration.

āš™ļø Configuration

Getting Zerodha API Credentials

  1. Sign up for a Kite Connect app at developers.kite.trade
  2. Create a new app and note down your api_key and api_secret
  3. Generate tokens using the authentication flow
  4. Add credentials to your .env file

Token Generation Process

# Step 1: Get the login URL
curl "https://kite.trade/connect/login?api_key=your_api_key&v=3"

# Step 2: After login, extract request_token from redirect URL
# Step 3: Generate access_token using the request_token

šŸ”§ Claude Desktop Setup

To integrate this MCP server with Claude Desktop, follow these steps:

Step 1: Locate Claude Desktop Config

Find your claude_desktop_config.json file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Step 2: Add MCP Server Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "zerodha-trading": {
      "command": "bun",
      "args": ["run", "/absolute/path/to/your/index.ts"],
      "env": {
        "KITE_API_KEY": "your_actual_api_key",
        "KITE_SECRET_KEY": "your_actual_secret_key", 
        "REQUEST_TOKEN": "your_actual_request_token",
        "ACCESS_TOKEN": "your_actual_access_token"
      }
    }
  }
}

Step 3: Restart Claude Desktop

After saving the configuration, restart Claude Desktop to load the MCP server.

Alternative: Using Node.js

If you prefer Node.js over Bun:

{
  "mcpServers": {
    "zerodha-trading": {
      "command": "node",
      "args": ["--loader", "ts-node/esm", "/absolute/path/to/your/index.ts"],
      "env": {
        "KITE_API_KEY": "your_actual_api_key",
        "KITE_SECRET_KEY": "your_actual_secret_key",
        "REQUEST_TOKEN": "your_actual_request_token", 
        "ACCESS_TOKEN": "your_actual_access_token"
      }
    }
  }
}

āš ļø Important:

  • Replace /absolute/path/to/your/index.ts with the actual path to your project
  • Use your real Zerodha API credentials
  • Ensure the path uses forward slashes even on Windows

šŸ“– API Reference

The MCP server exposes the following tools for AI interaction:

šŸ‘¤ Profile Operations

get-profile

Retrieves comprehensive user profile information.

// Usage in Claude
"Can you show me my Zerodha profile?"

// Returns
{
  user_id: string,
  user_name: string,
  email: string,
  user_type: string,
  broker: string,
  // ... additional profile data
}

šŸ’° Portfolio & Positions

show-portfolio

Displays complete portfolio holdings with current valuations.

// Usage in Claude  
"What's in my portfolio right now?"

// Returns detailed holdings with:
// - Stock symbols and quantities
// - Current market prices
// - P&L calculations
// - Total portfolio value

show-positions

Shows all open positions with live P&L.

// Usage in Claude
"Show me my current trading positions"

// Returns active positions with:
// - Entry prices and quantities
// - Current market prices  
// - Unrealized P&L
// - Position status

šŸ“ˆ Trading Operations

buy-stock

Places a buy order for specified stock and quantity.

// Parameters
{
  stock: string,    // Stock symbol (e.g., "RELIANCE", "TCS")
  quantity: number  // Number of shares to buy
}

// Usage in Claude
"Buy 10 shares of RELIANCE"
"Purchase 50 TCS stocks"

sell-stock

Places a sell order for specified stock and quantity.

// Parameters
{
  stock: string,    // Stock symbol (e.g., "RELIANCE", "TCS") 
  quantity: number  // Number of shares to sell
}

// Usage in Claude
"Sell 5 shares of HDFC Bank"
"Exit my position in Infosys"

šŸ” Example Conversations

Here are some natural language examples you can use with Claude:

šŸ—£ļø "What's my current portfolio value?"
šŸ—£ļø "Buy 25 shares of ITC"  
šŸ—£ļø "Show me all my losing positions"
šŸ—£ļø "What's my profile information?"
šŸ—£ļø "Sell half of my Wipro holdings"

šŸ› ļø Development

Technology Stack

Technology Purpose Version
TypeScript Type-safe development ^5.0.0
KiteConnect Zerodha API integration Latest
MCP SDK Model Context Protocol Latest
Zod Runtime type validation ^3.0.0
Bun Fast runtime & package manager ^1.0.0

Project Structure

zerodha-claude-mcp/
ā”œā”€ā”€ šŸ“„ index.ts              # MCP server entry point
ā”œā”€ā”€ šŸ“„ trade.ts              # Trading logic and API calls  
ā”œā”€ā”€ šŸ“„ package.json          # Dependencies and scripts
ā”œā”€ā”€ šŸ“„ tsconfig.json         # TypeScript configuration
ā”œā”€ā”€ šŸ“„ .env                  # Environment variables
ā”œā”€ā”€ šŸ“„ README.md             # Documentation
ā”œā”€ā”€ šŸ“„ bun.lock             # Lock file
ā”œā”€ā”€ 🐳 Dockerfile           # Docker image configuration
ā”œā”€ā”€ 🐳 docker-compose.yml   # Docker Compose setup
└── šŸ“„ .dockerignore        # Docker ignore rules

Local Development

  1. Clone and setup (if not already done):

    git clone https://github.com/gamandeepsingh/zerodha-claude-mcp.git
    cd zerodha-claude-mcp
    bun install
    
  2. Start development server:

    # Development mode with auto-reload
    bun run dev
    
    # Production mode
    bun run start
    
  3. Run tests (if available):

    bun test
    

Adding New Features

To add new trading tools:

  1. Define the tool in your MCP server
  2. Add Zod schema for parameter validation
  3. Implement handler using KiteConnect API
  4. Update documentation in this README

Debugging

Enable debug mode by setting DEBUG=true in your .env file:

DEBUG=true

This will provide detailed logging of API calls and responses.

šŸ¤ Contributing

We welcome contributions! Here's how you can help:

Ways to Contribute

  • šŸ› Bug Reports: Found a bug? Open an issue
  • ✨ Feature Requests: Have an idea? Start a discussion
  • šŸ“ Documentation: Improve docs, add examples
  • šŸ”§ Code: Fix bugs, add features, improve performance

Development Workflow

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Commit your changes: git commit -m 'Add amazing feature'
  4. Push to the branch: git push origin feature/amazing-feature
  5. Open a Pull Request

Code Standards

  • āœ… Use TypeScript for all new code
  • āœ… Follow existing code style
  • āœ… Add tests for new features
  • āœ… Update documentation
  • āœ… Ensure all tests pass

šŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for full details.

MIT License Summary

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software...

āš ļø Disclaimer

IMPORTANT: This project is for educational and development purposes only.

Risk Warning

  • šŸ“Š Trading Risk: Trading in financial markets involves substantial risk of loss
  • šŸ’° Capital Risk: Never trade with money you cannot afford to lose
  • šŸ” Due Diligence: Always conduct your own research before making trading decisions
  • šŸ¤– AI Limitations: AI-generated trading decisions should not be followed blindly
  • šŸ“ˆ Market Volatility: Past performance does not guarantee future results

Best Practices

  1. Start Small: Test with small amounts first
  2. Paper Trading: Use Zerodha's paper trading feature initially
  3. Risk Management: Set stop-losses and position limits
  4. Stay Informed: Keep up with market news and regulations
  5. Continuous Learning: Educate yourself about trading strategies

Support

  • šŸ“š Documentation: Check this README and inline code comments
  • šŸ’¬ Discussions: Join GitHub Discussions
  • šŸ› Issues: Report bugs via GitHub Issues
  • šŸ“§ Email: Contact the maintainers for specific questions

<div align="center">

Made with ā¤ļø for the trading community

⭐ Star this repo if you find it useful! | šŸ“ Fork it to customize for your needs

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured