Skip to main content
Glama

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

Related MCP server: Tapetide MCP Server

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 ~/.codex folder (in your file manager press Ctrl+H to 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 that nse-mcp starts 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.

Install Server
F
license - not found
C
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    D
    maintenance
    Provides real-time and historical Indian stock market data from NSE and BSE exchanges with 66 tools covering quotes, options chains, corporate actions, IPOs, and market analytics for LLM-powered financial analysis.
    56
    11
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Connects AI assistants to real-time Indian stock market data with 34 tools for search, screening, analysis, portfolio tracking, and market insights across all NSE and BSE stocks.
    102
    55
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables real-time and historical Indian stock market data retrieval, including prices, news, recommendations, and top gainers/losers.
  • A
    license
    -
    quality
    C
    maintenance
    Provides real-time Indian stock market intelligence including NSE market status, company ticker lookup, and market hours for AI assistants.
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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/jugaad-py/nse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server