NSE MCP
An MCP (Model Context Protocol) server that turns National Stock Exchange of India (NSE) data into AI tools. If you use an AI assistant on your computer (Claude Desktop, Codex, Gemini CLI, Cursor, or similar), this lets that assistant answer questions about Indian stocks in plain English — "What's the live quote for RELIANCE?", "Is the market open right now?" — with real data instead of guesses.
MCP is the standard plug that lets AI apps use extra tools: you install the server once, connect it in the app's settings, and then just ask questions. Powered by jugaad-data.
Quick install
Install with one command. No Python or venv needed — the installer bundles its own runtime and prints the config entry to paste.
Windows: open PowerShell (search for "PowerShell" in the Start menu), then run:
powershell -ExecutionPolicy ByPass -c "irm https://raw.githubusercontent.com/jugaad-py/nse-mcp/main/install.ps1 | iex"
Linux / macOS: open the Terminal app, then run:
curl -LsSf https://raw.githubusercontent.com/jugaad-py/nse-mcp/main/install.sh | sh
You should see a short log ending in nse-mcp installed. If Windows asks for
permission, click Yes. If something fails, copy the error text and show it
to your AI assistant.
Already have Python or uv? These work too (optional):
pip install nse-mcp
# or
uv tool install nse-mcp # on-demand alternative: uvx nse-mcp
Connect your AI app
Your AI app (the "MCP client") reads a small settings file at startup. Add the block below to that file, save it, then fully quit and reopen the app:
{
"mcpServers": {
"nse-mcp": {
"command": "nse-mcp"
}
}
}
This is the same block the installer prints in the terminal — paste whichever is easier.
Finding the settings file: the folders start with a dot (macOS/Linux) or are hidden by default (Windows). Fastest way — open the folder directly:
- Windows: press
Win + R, paste%APPDATA%\Claude, press Enter - macOS: in Finder choose Go → Go to Folder… (Cmd+Shift+G), paste
~/Library/Application Support/Claude, press Enter - Linux: the file is at
~/.codex/config.toml— open the~/.codexfolder (in your file manager pressCtrl+Hto show hidden folders)
If the file already contains text: don't delete it. If it already has an
mcpServers section, add a comma after the last entry, then paste the block
after it.
Where the settings file lives, by app:
| App | Settings file |
|---|---|
| Claude Desktop | claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\) |
| ChatGPT desktop / Codex CLI | ~/.codex/config.toml, as [mcp_servers.nse-mcp] |
| Gemini CLI | ~/.gemini/settings.json |
| Claude Code, Cursor, VS Code | .mcp.json in the project root, or mcp add nse-mcp -- nse-mcp |
ChatGPT on the web connects only to remote servers, so use a desktop app.
What you can ask
- "Get a live quote for RELIANCE" — price, change, volume, market cap
- "Is the NSE market open right now?"
- "Which stocks gained the most today?"
- "Show me INFY's closing price for the last 6 months"
- "What's NIFTY 50's P/E compared to a year ago?"
Features
- Live prices and trades — current price, the day's high and low, volume,
buy/sell depth, and futures/options contracts for a symbol (
stock_quote,stock_quote_fno,trade_info,chart_data) - Market overview — open/closed status, total turnover, biggest gainers
and losers, pre-market prices, trading holidays, F&O securities, and large
bulk trades (
market_status,market_turnover,pre_open_market,top_stocks,holiday_list,live_fno,block_deal_session) - Indices — live index quotes and which stocks belong to an index
(
all_indices,live_index,index_list) - Option chains — the contracts available for an index, stock, or currency
pair, with their set prices and dates (
index_option_chain,equities_option_chain,currency_option_chain,option_chain_contract_info) - Corporate actions — announcements, symbol metadata, registrar details
(
corporate_announcements,symbol_meta,reg_details) - History — past daily prices for stocks and indices, plus index P/E,
P/B, and dividend yield (
stock_history,index_history,index_pe_history)
Plain-language glossary for the jargon above:
| Term | Meaning |
|---|---|
| OHLC | Open, high, low, close — the day's price range |
| F&O | Futures and options — contracts to buy or sell at a set price and date |
| Option chain | All the contracts for a symbol at their set prices (strikes) and dates (expiries) |
| P/E | Price-to-earnings — how expensive a stock is relative to its profits (P/B is the same idea, vs. its book value) |
| Dividend yield | The annual dividend paid, as a percentage of the share price |
| Block deal | A single very large trade, usually between institutions |
For developers
git clone https://github.com/jugaad-py/nse-mcp
cd nse-mcp
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
Run the tests (live NSE data; needs a stable network):
.venv/bin/python -m pytest tests/ -v
Run the server directly:
.venv/bin/python server.py
Troubleshooting
- Tools don't appear after the config change? Fully quit and reopen the app.
- Check the settings file is valid (quotes and commas in JSON, one
=per line in TOML) and thatnse-mcpstarts without errors when run in a terminal. - NSE rate-limits IPs. A transient failure just means retry the question.
Project structure
nse-mcp/
├── server.py # MCP server: NSE tools, exposes the nse-mcp CLI entry
├── pyproject.toml # Packaging source of truth
├── install.sh # Linux/macOS one-line installer
├── install.ps1 # Windows one-line installer
├── .github/workflows/ # CI: tests, PyPI publish, version check
├── tests/ # Live-data pytest suite
└── requirements.txt # Developer dependencies
Disclaimer
For research and personal use. Data comes from public NSE endpoints and may be delayed or unavailable. Not investment advice.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nse_mcp-0.1.1.tar.gz.
File metadata
- Download URL: nse_mcp-0.1.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a499ac47e6a8ef179027ac7ca206e48b2262d22db51f3db671aa6d54f13d9269
|
|
| MD5 |
3f0dace616e25c116c7c3d8eda50c4a1
|
|
| BLAKE2b-256 |
0e1f90ade6099c74f4aea679f101e0c63dbb0bccfca6cc29debf72c52ce51cde
|
File details
Details for the file nse_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: nse_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9b71626d241a958a834c8458cd8879d46233f5fc5e09fdf02effb8901eeec64
|
|
| MD5 |
0ffde2eea4c5a427cd4834e61b7f545c
|
|
| BLAKE2b-256 |
cfbd6b7868b391bf1c37956ed98684b5fcedf16ffa5ec94a7df99405075bf540
|