NSE-MCP

NSE-MCP

Exposes live Indian stock market data from the National Stock Exchange (NSE) via 17 tools covering bulk/block deals, institutional flows, market data, corporate events, and short selling.

Category
访问服务器

README

NSE MCP

An MCP (Model Context Protocol) server that exposes live Indian stock market data from the National Stock Exchange (NSE) to LLM clients like Claude Desktop, Cursor, VS Code, and any other MCP-compatible host.

Modelled after OpenInsider-MCP but built entirely around NSE India's public data APIs.


What it provides

17 tools across five categories:

Category Tools
Bulk / Block / Insider deals get_bulk_deals, get_block_deals, get_insider_trading, get_latest_bulk_deals, get_top_bulk_buys, get_top_bulk_sells, search_by_symbol
Institutional flows get_fii_dii_activity
Market data get_quote, get_market_status, get_nifty_indices, get_top_gainers, get_top_losers, get_most_active
Corporate events get_nse_announcements, get_corporate_actions
Short data get_short_selling

All tools return typed JSON. No scoring, no recommendations — pure data layer.


Requirements

Requirement Version
Node.js ≥ 20
npm ≥ 8 (bundled with Node 20)
Git Any recent version

Why Node 20? The server uses the native fetch API and AbortSignal.timeout(), both of which require Node 18+. Node 20 is the active LTS and is recommended.


Installation

1. Clone the repository

git clone https://github.com/manitgupta/nse-mcp.git
cd nse-mcp

2. Install dependencies

npm install

3. Build

npm run build

This compiles the TypeScript source in src/ to dist/. The entry point is dist/index.js.

4. Verify it starts

node dist/index.js

The server communicates over stdio (standard input/output) — it will appear to hang because it is waiting for MCP messages. That is correct. Press Ctrl+C to exit.


Configuration

The server works out of the box with no required configuration. One optional environment variable is available:

Variable Default Description
NSE_MCP_UA Chrome 120 UA string Override the User-Agent sent to NSE and Yahoo Finance. Useful if NSE starts blocking the default UA.

Setting the environment variable

macOS / Linux

export NSE_MCP_UA="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/121.0.0.0 Safari/537.36"

Windows (PowerShell)

$env:NSE_MCP_UA = "Mozilla/5.0 ..."

You can also set it inline in your MCP client config (see below).

How NSE session auth works

NSE India's API requires browser-like cookies. On the first request the server automatically:

  1. Fetches https://www.nseindia.com to obtain initial cookies.
  2. Fetches the live-equity-market page with those cookies to complete the session.
  3. Caches the session for ~7 minutes, then refreshes transparently.

No manual login or API key is needed.


Adding to an MCP client

In all configs below, replace /absolute/path/to/nse-mcp with the actual path where you cloned the repo.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "nse-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/nse-mcp/dist/index.js"]
    }
  }
}

With an env override:

{
  "mcpServers": {
    "nse-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/nse-mcp/dist/index.js"],
      "env": {
        "NSE_MCP_UA": "Mozilla/5.0 ..."
      }
    }
  }
}

Restart Claude Desktop after saving.

VS Code (GitHub Copilot / Continue)

Add to .vscode/mcp.json in your workspace, or to your user settings:

{
  "servers": {
    "nse-mcp": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/nse-mcp/dist/index.js"]
    }
  }
}

Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "nse-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/nse-mcp/dist/index.js"]
    }
  }
}

Any stdio-based MCP host

command: node
args:    ["/absolute/path/to/nse-mcp/dist/index.js"]

Tool reference

get_bulk_deals

Today's NSE bulk deals — single-client trades of ≥ 0.5% of a company's listed shares in one session.

Parameter Type Description
symbol string NSE symbol (e.g. RELIANCE). Omit for all.
dealType BUY | SELL | ALL Direction filter. Default: ALL.

get_block_deals

Today's NSE block deals — negotiated trades of minimum ₹10 crore executed in the Block Deal Window.

Parameter Type Description
symbol string NSE symbol. Omit for all.
dealType BUY | SELL | ALL Direction filter. Default: ALL.

get_insider_trading

SEBI PIT (Prohibition of Insider Trading) disclosures — promoter and insider buy/sell transactions.

Parameter Type Description
symbol string NSE symbol. Omit for all companies.
fromDate string YYYY-MM-DD. Default: 30 days ago.
toDate string YYYY-MM-DD. Default: today.

get_latest_bulk_deals

Today's bulk deals sorted by trade value.

Parameter Type Description
dealType BUY | SELL | ALL Direction filter. Default: ALL.

get_top_bulk_buys

Largest bulk-deal purchases today, ranked by total value (quantity × price).

Parameter Type Description
limit number Results to return. Default: 10.
symbol string Restrict to one symbol.

get_top_bulk_sells

Largest bulk-deal sales today, ranked by total value.

Parameter Type Description
limit number Results to return. Default: 10.
symbol string Restrict to one symbol.

get_fii_dii_activity

Daily FII and DII net buy/sell figures in the Indian cash market.

Parameter Type Description
limit number Number of recent trading days. Default: 10.

get_nse_announcements

Corporate announcements filed with NSE — board meetings, results, mergers, regulatory updates, etc. (equivalent to SEC 8-K filings).

Parameter Type Description
symbol string NSE symbol. Omit for all.
daysBack number Announcements from the last N days. Omit for no date filter.
limit number Maximum results. Default: 20.

get_market_status

Current open/closed status of NSE segments (Capital Market, F&O, Currency Derivatives, Commodity) plus live index levels.

No parameters.


get_nifty_indices

Live data for all NSE indices — price, change, 52-week range, advances/declines count.

Parameter Type Description
name string Partial, case-insensitive filter. E.g. "BANK" returns all bank-related indices.

get_top_gainers

Top gaining stocks by % change in the current session.

Parameter Type Description
index string NSE index to scan. Default: NIFTY 500.
limit number Results to return. Default: 10.

get_top_losers

Top losing stocks by % change in the current session.

Parameter Type Description
index string NSE index to scan. Default: NIFTY 500.
limit number Results to return. Default: 10.

get_most_active

Most actively traded stocks by total traded value (₹) in the current session.

Parameter Type Description
index string NSE index to scan. Default: NIFTY 500.
limit number Results to return. Default: 10.

search_by_symbol

Aggregated view for one stock — returns today's bulk deals, block deals, recent insider trades, and recent announcements in a single call.

Parameter Type Description
symbol string NSE symbol. Required.
daysBack number Look-back window for insider trades and announcements. Default: 30.

get_quote

Live stock quote via Yahoo Finance. Returns price, 52-week range, volume, market cap, P/E ratios, dividend yield, and next earnings date. Prices are in INR.

Parameter Type Description
symbol string NSE symbol (e.g. RELIANCE, TCS). .NS exchange suffix is appended automatically. Pass SYMBOL.BO to query BSE instead. Required.

get_short_selling

Short-selling data as reported by brokers to NSE under SEBI's short-selling framework.

Parameter Type Description
symbol string NSE symbol. Omit for all.
limit number Return top N stocks by short-sold quantity.

get_corporate_actions

Upcoming and recent corporate actions — dividends, stock splits, bonus issues, rights issues, buy-backs.

Parameter Type Description
symbol string NSE symbol. Omit for all companies.
fromDate string YYYY-MM-DD. Default: 3 months ago.
toDate string YYYY-MM-DD. Default: today.

Example prompts

Once configured, you can ask your LLM client things like:

  • "What are today's biggest bulk deals on NSE?"
  • "Show me insider trades for RELIANCE in the last 30 days."
  • "What is the live quote for TCS?"
  • "Which Nifty 50 stocks are up more than 2% today?"
  • "What's the FII/DII flow for the last 5 trading days?"
  • "Give me all corporate actions for INFY this quarter."
  • "Show everything you know about HDFC — deals, announcements, insider activity."

Development

# Watch mode — recompiles on every save
npm run dev

# One-shot build
npm run build

# Start the compiled server
npm start

Project structure

src/
├── index.ts          # MCP server entry point — tool list + dispatch
├── types.ts          # Shared TypeScript interfaces
├── cache.ts          # In-memory TTL cache
├── http.ts           # Rate-paced HTTP fetcher with retry
├── nse/
│   ├── session.ts    # NSE cookie session management
│   └── fetch.ts      # NSE API client (wraps http.ts + session)
├── yahoo/
│   ├── fetch.ts      # Yahoo Finance HTTP config
│   ├── parseQuote.ts # Quote JSON parser
│   └── quoteSummary.ts
└── tools/            # One file per tool
    ├── bulkDeals.ts
    ├── blockDeals.ts
    ├── insiderTrading.ts
    ├── latestBulkDeals.ts
    ├── topBulkBuys.ts
    ├── topBulkSells.ts
    ├── fiiDiiActivity.ts
    ├── announcements.ts
    ├── marketStatus.ts
    ├── indices.ts
    ├── topGainers.ts
    ├── topLosers.ts
    ├── mostActive.ts
    ├── searchBySymbol.ts
    ├── quote.ts
    ├── shortSelling.ts
    └── corporateActions.ts

Data sources

Data Source
Bulk deals, block deals, insider trading, FII/DII, indices, market status, announcements, corporate actions, short selling NSE India public API (nseindia.com)
Live stock quotes Yahoo Finance (.NS suffix for NSE, .BO for BSE)

All data is fetched in real time. NSE endpoints are cached for 5 minutes; live quotes and market status for 60 seconds.


License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选