Zerodha Kite MCP Server
This project implements an MCP (Model Context Protocol) server that interacts with the Zerodha Kite API, allowing you to perform trading actions like buying and selling stocks, and fetching your holdings and positions.
Prerequisites
- Node.js and npm/yarn: Ensure you have Node.js installed. This project uses
typescript
andesbuild
for building. - Zerodha Kite Developer Account: You need an account with Zerodha and access to their developer API.
Setup Instructions
1. Create a Kite App
- Go to https://developers.kite.trade/create and create a new app.
- During app creation, you can use any redirection URL (e.g.,
https://localhost:3000/api/callback/userauth
). This URL is primarily used for the initial authentication flow. - Note down the
API key
andAPI secret
provided after app creation.
2. Configure API Keys in the Project
- Open the
index.ts
file. - Replace
"your_api_key"
with your actual Kite AppAPI key
. - Important: The
apiSecret
is needed for the initial access token generation. It's commented out in theindex.ts
file by default. You will need to uncomment it and add yourAPI secret
when generating the access token for the first time.
3. Obtain an Access Token
The access token is required for the server to make authenticated calls to the Kite API. It needs to be generated once and can then be reused.
- Step 3a: Get the Login URL
- In
index.ts
, temporarily uncomment thegetLoginUrl
function: - You'll also need to call this function. You can add a line like
console.log(await getLoginUrl());
at the end of the file or run it in a separate script. - Run the modified
index.ts
(e.g., usingts-node index.ts
or by building and running the JS output). This will print a login URL to your console.
- In
- Step 3b: Authorize and Get Request Token
- Open the printed login URL in your browser.
- Log in with your Zerodha credentials and authorize the app.
- After successful authorization, you will be redirected to your specified
redirect_url
. The URL will contain arequest_token
parameter (e.g.,https://localhost:3000/api/callback/userauth?request_token=YOUR_REQUEST_TOKEN
). - Copy this
request_token
.
- Step 3c: Generate Access Token
- In
index.ts
, uncomment thegetAccessToken
function and ensure yourapiSecret
is correctly set: - Call this function with the
request_token
you obtained. For example, addawait getAccessToken("YOUR_REQUEST_TOKEN");
to the script or run it interactively. - Run the script. This will print your
access_token
to the console.
- In
- Step 3d: Set the Access Token in
index.ts
- Copy the generated
access_token
. - Paste it into the
access_token
variable inindex.ts
: - Security Note: After generating the access token, you can (and should) comment out or remove the
getLoginUrl
andgetAccessToken
functions, and especially theapiSecret
fromindex.ts
to avoid accidental exposure. Theaccess_token
is long-lived.
- Copy the generated
4. Install Dependencies
Navigate to the project root directory in your terminal and run:
This will install kiteconnect
, @modelcontextprotocol/sdk
, zod
, and other necessary dependencies.
5. Build the Project
The project uses TypeScript. You need to compile it to JavaScript. A common way is to use esbuild
as suggested by the MCP server setup. If you have a build
script in your package.json
(e.g., esbuild trader.ts --bundle --outfile=dist/trader.js --platform=node --format=esm
), run:
This will typically create a dist
directory with the compiled trader.js
file. Make sure the output path matches the one you will use in the MCP server configuration (see below).
Running the MCP Server
Once the setup is complete and the project is built, the MCP server can be started. The trader.ts
(compiled to dist/trader.js
) is the entry point for the MCP server.
The server listens for commands via standard input/output (stdio) when configured with an MCP client like Cursor.
Configuring with Cursor
To use this trader bot as an MCP server in Cursor:
- Go to Cursor settings (Cmd/Ctrl + ,).
- Navigate to
Extensions
->MCP
. - Click on
Edit in settings.json
forModel Context Protocol: Servers
. - Add the following configuration:Important: Replace
/path/to/your/Zerodha-MCP/dist/trader.js
with the absolute path to the compiledtrader.js
file on your system. For example, if your username isuser
and the project is inDevelopment/Zerodha-MCP
, the path would be/Users/user/Development/Zerodha-MCP/dist/trader.js
.
Available MCP Tools
The server exposes the following tools that can be called by an MCP client:
trader.add
- Description: A simple tool to add two numbers.
- Parameters:
a
(number): The first number.b
(number): The second number.
- Returns: The sum of
a
andb
.
trader.sellStock
- Description: Places a market sell order for a given stock.
- Parameters:
tradingsymbol
(string): The trading symbol of the stock (e.g., "INFY", "RELIANCE").quantity
(number): The number of shares to sell.
- Returns: A confirmation message "Stock sold successfully" or an error if the transaction fails.
- Note: This uses
PRODUCT_CNC
(Cash and Carry, for delivery-based trades) andEXCHANGE_NSE
. The order tag is automatically generated and incremented.
trader.buyStock
- Description: Places a market buy order for a given stock.
- Parameters:
tradingsymbol
(string): The trading symbol of the stock.quantity
(number): The number of shares to buy.
- Returns: A confirmation message "Stock bought successfully" or an error if the transaction fails.
- Note: This uses
PRODUCT_CNC
andEXCHANGE_NSE
. The order tag is automatically generated and incremented.
trader.getPositions
- Description: Fetches your current open positions.
- Parameters: None.
- Returns: A JSON string representing your current positions.
trader.getHoldings
- Description: Fetches your current holdings (stocks in your demat account).
- Parameters: None.
- Returns: A JSON string representing your holdings.
Project Structure Highlights
index.ts
: Contains the core Kite Connect API interaction logic, including setting API keys, access tokens, and functions for buying/selling stocks, and fetching profile, holdings, and positions. It also handles persisting anorderTagCounter
incounter.json
to ensure unique order tags.trader.ts
: Sets up the MCP server using@modelcontextprotocol/sdk
. It defines the tools exposed by the server and maps them to the functions inindex.ts
.counter.json
: Automatically created in the same directory asindex.js
(or its compiled output) to store and persist the last used order tag number. This ensures that order tags are unique across server restarts.
Development Notes
- Order Tagging: The system uses an incremental counter (
orderTagCounter
inindex.ts
, persisted incounter.json
) to tag orders. This helps in identifying orders. - Error Handling: Basic error handling is implemented (logging to console). You might want to expand this for more robust error reporting through the MCP.
- Initial Setup: The
init()
function inindex.ts
is called automatically whenindex.ts
is imported. It loads theorderTagCounter
and sets the Kite Connect access token.
This server cannot be installed
Implements a Model Context Protocol server that connects with Zerodha Kite API, allowing users to buy/sell stocks and retrieve holdings and positions information.
Related MCP Servers
- -securityAlicense-qualityA Model Context Protocol server that enables interaction with the Tradovate API for managing trading contracts, positions, orders, and accounts.Last updated -JavaScriptMIT License
- -securityFlicense-qualityA Model Context Protocol server that enables interactions with the Hedera network, providing tools for wallet creation, balance checking, transaction building, and sending signed transactions.Last updated -JavaScript
- -securityFlicense-qualityA Model Context Protocol server that interfaces with Alpaca trading API, allowing users to manage portfolios, place trades, and access market data through natural language interactions.Last updated -Python
- -security-license-qualityA Cloudflare Worker that provides a RESTful API interface to Zerodha trading functionalities, enabling users to authenticate, access profile information, manage orders, and view holdings and positions.Last updated -JavaScript