Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,11 @@
"source": "third_party/webull",
"description": "View accounts, positions, orders, watchlists, and market data."
},
{
"name": "zerodha-kite",
"source": "third_party/zerodha-kite",
"description": "Review portfolios, positions, orders, margins, and market data through Kite."
},
{
"name": "sp-global",
"source": "third_party/sp-global",
Expand Down
35 changes: 35 additions & 0 deletions third_party/zerodha-kite/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "zerodha-kite",
"displayName": "Zerodha Kite",
"version": "1.0.0",
"minClientVersions": {
"cursor": "3.13.0"
},
"description": "Review portfolios, positions, orders, margins, and market data through Kite.",
"author": {
"name": "Cursor",
"email": "plugins@cursor.com"
},
"homepage": "https://mcp.kite.trade/",
"repository": "https://github.com/cursor/plugins",
"license": "MIT",
"logo": "assets/logo.svg",
"keywords": [
"zerodha",
"kite",
"brokerage",
"trading",
"portfolio",
"orders",
"market data",
"mcp"
],
"category": "integrations",
"tags": [
"zerodha",
"finance",
"trading",
"mcp"
],
"mcpServers": "./mcp.json"
}
9 changes: 9 additions & 0 deletions third_party/zerodha-kite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this plugin will be documented here.

## 1.0.0 — initial release

- Added the `zerodha-kite` MCP server pointing at Zerodha's hosted Streamable HTTP endpoint (`https://mcp.kite.trade/mcp`).
- Auth uses Zerodha's external Kite login and two-factor authentication flow — no API key or request header to configure.
- Logo: Zerodha's official icon from the `zerodha/fourthcross.tech` repository, formatted as a 192×192 marketplace tile.
21 changes: 21 additions & 0 deletions third_party/zerodha-kite/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Cursor

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, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
63 changes: 63 additions & 0 deletions third_party/zerodha-kite/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Zerodha Kite

Cursor plugin that connects agents to [Zerodha Kite](https://kite.zerodha.com/) through Zerodha's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server.

Review holdings, positions, margins, orders, trades, and market data from your Zerodha account.

## Install

1. Open **Cursor Settings → Plugins**.
2. Search for **Zerodha Kite**.
3. Click **Install**, then follow the Kite authorization prompt.

Or run `/add-plugin zerodha-kite` in chat.

## MCP

```json
{
"mcpServers": {
"zerodha-kite": {
"type": "http",
"url": "https://mcp.kite.trade/mcp"
}
}
}
```

The hosted MCP does not require a Kite Connect API key. Its login tool opens Zerodha's external authorization flow, where you sign in to Kite and complete two-factor authentication. Your Zerodha credentials are not added to this plugin or sent as MCP headers.

## Before you connect

You need an active Zerodha trading account with two-factor authentication enabled.

## What agents can do

| Category | Capabilities |
| --- | --- |
| Account | View the signed-in profile and account margins |
| Portfolio | Review holdings, positions, and mutual fund investments |
| Orders | Read orders, trades, and order execution history |
| Market data | Search instruments and retrieve quotes, LTP, OHLC, and historical data |
| GTT | View and manage Good Till Triggered orders |

The hosted runtime is the source of truth for tool names and schemas.

## Notes

- Zerodha hosts the server; this plugin does not wrap a local stdio server.
- The hosted service excludes regular order placement, modification, and cancellation. Zerodha documents GTT orders as the exception.
- Tool calls operate on the Zerodha account authorized during the Kite login flow.

## Docs

- Zerodha Kite MCP: https://mcp.kite.trade/
- Kite MCP source: https://github.com/zerodha/kite-mcp-server
- Kite Connect API: https://kite.trade/docs/connect/v3/
- Server URL: https://mcp.kite.trade/mcp

Logo is Zerodha's official icon, sourced from Zerodha's `fourthcross.tech` GitHub repository.

## License

MIT
7 changes: 7 additions & 0 deletions third_party/zerodha-kite/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions third_party/zerodha-kite/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"zerodha-kite": {
"type": "http",
"url": "https://mcp.kite.trade/mcp"
}
}
}
Loading