CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Stock Research Mcp

tapetide-hq/nse-bse-indian-stock-market-data-mcp
authSTDIOregistry active
Summary

Connects Claude and other MCP clients to real-time data for 8,200+ stocks across NSE and BSE. Exposes 34 tools covering quotes, fundamental screening with 326 ratios, technical indicators, quarterly financials, FII/DII institutional flows, bulk deals, analyst forecasts, and portfolio tracking. The screener supports plain-English queries and real-time technical signals like RSI crossovers and MACD. Runs as a remote server via URL or locally via npx with stdio transport. Authentication works through Google OAuth for chat interfaces or personal tokens for code editors. Useful when you need programmatic access to Indian equity market data without building exchange integrations yourself.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tapetide — Indian Stock Market MCP Server

NSE & BSE Indian Stock Market Data MCP Server

The Model Context Protocol server for Indian stock markets — 34 tools to search, screen & analyze all 8,200+ NSE and BSE stocks from Claude, ChatGPT, Cursor & any AI assistant

npm version npm downloads MIT License MCP compatible

Documentation • Quick Start • 34 Tools • Example Prompts • npm


What is this?

Tapetide MCP Server is a Model Context Protocol server that connects AI assistants to real-time Indian stock market data. It covers all ~8,200 stocks listed on NSE and BSE — from large-cap Nifty 50 to SME stocks.

Ask your AI to look up any stock, run a screener with 326 fundamental filters or real-time technical indicators, pull quarterly financials, check analyst consensus ratings, track your portfolio P&L, monitor FII/DII institutional flows, or get today's bulk deals — all through natural language.

Compatible with: Claude Desktop, Claude Code, ChatGPT, Cursor, Windsurf, Kiro, VS Code, Codex, Zed, Gemini, Grok, OpenCode, Antigravity, and any MCP-compatible client.

Quick Start

Option 1: Remote MCP (No install — claude.ai, chatgpt.com, Grok, Gemini)

Add this URL directly in your AI chat app:

https://mcp.tapetide.com/mcp

Authentication happens automatically via Google OAuth. No token needed.

Option 2: Remote MCP with Token (Claude Code, VS Code, Kiro, Zed)

For code editors that support URL-based MCP servers with custom headers:

  1. Get a free token at tapetide.com/settings/tokens
  2. Add to your MCP config:
{
  "mcpServers": {
    "tapetide": {
      "type": "url",
      "url": "https://mcp.tapetide.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

Option 3: Local MCP via npm (Claude Code, Codex, Cursor, Windsurf, VS Code, Gemini CLI, Kiro, OpenCode)

For stdio-based MCP clients. No cloning or building required — runs via npx:

  1. Get a free token at tapetide.com/settings/tokens
  2. Add to your MCP config:
{
  "mcpServers": {
    "tapetide": {
      "command": "npx",
      "args": ["-y", "tapetide-mcp"],
      "env": {
        "TAPETIDE_TOKEN": "your_token_here"
      }
    }
  }
}

Node.js 18+ required for the local option. Run node --version to check.

How It Works

┌─────────────────┐     stdio (JSON-RPC)     ┌──────────────────┐     HTTPS      ┌─────────────────────┐
│  AI Assistant   │ ◄──────────────────────► │  tapetide-mcp    │ ◄────────────► │  mcp.tapetide.com   │
│  (Claude, etc.) │                           │  (npm package)   │                │  (Cloudflare Worker) │
└─────────────────┘                           └──────────────────┘                └─────────────────────┘

The npm package is a lightweight stdio bridge (~300 lines, zero runtime dependencies). It:

  • Reads JSON-RPC from stdin, forwards to the remote Tapetide MCP server, writes responses to stdout
  • Auto-detects framing: Content-Length (VS Code, Claude Desktop) or newline-delimited JSON (Kiro, Claude Code)
  • Exchanges your refresh token for a 1-hour HMAC access token, auto-refreshes before expiry
  • Handles SSE responses from the remote server
  • Warns on stderr when approaching rate limits

All 34 tools and their logic run on the remote server — the npm package is just the transport layer.

Authentication

MethodHow it worksBest for
Google OAuthBrowser sign-in, automatic token refreshAI chat apps (Claude.ai, ChatGPT, Grok, Gemini)
Personal Token (remote)Authorization: Bearer tpt_rt_... headerCode editors with URL-based MCP (VS Code, Kiro, Zed)
Personal Token (local)TAPETIDE_TOKEN env var via npxstdio MCP clients (Cursor, Windsurf, Claude Desktop, Codex)

Generate a free personal token at tapetide.com/settings/tokens. Works for both remote and local MCP.

Tools

🔍 Search & Discovery (5 tools)

ToolDescription
search_stocksFuzzy search all NSE/BSE stocks by name, symbol, BSE code, or ISIN. Filter by sector/industry.
screen_stocksFundamental screener with 326 ratios — PE, ROCE, sales growth, debt/equity, Piotroski score, and more. Plain-English query syntax.
screen_stocks_technicalReal-time technical screener — RSI, MACD, SMA/EMA crossovers, Bollinger Bands, ADX, volume. Supports crosses_above/crosses_below.
get_screener_ratiosSearch or browse all 326 available fundamental ratios.
get_trending_stocksToday's top gainers, losers, and high-volume stocks from Nifty 500.

📊 Company Analysis (3 tools)

ToolDescription
get_company_profileFull overview — sector, fundamentals, growth metrics, pros/cons. Optionally include technicals (20+ indicators), analyst ratings, and peer comparison in one call.
get_stock_eventsNews (sentiment-tagged), corporate actions (dividends, splits, bonuses), and filings (annual reports, concall transcripts, investor presentations).
get_stock_ownershipDividend history with yield calculations + mutual fund scheme-level holdings.

💰 Quotes & Prices (3 tools)

ToolDescription
get_stock_quoteLive price — LTP, change %, volume, market cap, PE, PB, 52-week high/low.
get_batch_quotesUp to 20 stock quotes in a single call.
get_price_historyDaily or weekly OHLCV with delivery %. Up to 2,000 days of history.

📈 Financials & Fundamentals (3 tools)

ToolDescription
get_financialsQuarterly + annual P&L, balance sheet, cash flow, and ratios. Fetch individual sections or all at once.
get_shareholdingPromoter, FII, DII, and public shareholding patterns over time.
get_forecastsAnalyst forecasts — EPS, revenue, EBITDA, net income, ROA, ROE, and price targets. Actuals vs estimates for spotting earnings surprises.

🏛️ Market Data & Institutional Flows (5 tools)

ToolDescription
get_market_pulseQuick overview — FII/DII net flows, Nifty 50 PE/PB/DY, top technical signals.
get_fii_dii_detail30-day daily cash market flows, F&O participant positioning (long/short OI), weekly/monthly/yearly aggregates, buy/sell streaks, cumulative chart data.
get_fpi_sectorsFPI sector-wise investment — AUM share, fortnight change, 1-year cumulative flow.
get_market_newsSentiment-tagged market news across categories (companies, global, IPO, policy, tech).
market_valuationsIndex PE, PB, dividend yield over time — Nifty 50, Bank Nifty, Nifty IT, Midcap 50. Up to 20 years.

📡 Market Insights (8 tools)

ToolDescription
market_dealsToday's bulk and block deals — client name, buy/sell, quantity, price, value.
market_fno_banF&O ban list (MWPL ≥ 95%) and stocks approaching ban (80-95%).
market_ipoCurrent and upcoming IPOs with subscription data (QIB, retail, NII, total).
market_deliveriesStocks with highest delivery % today — genuine buying vs speculative trading.
market_mtfMargin Trading Facility — consolidated figures, per-stock funded positions, trends.
market_slbmStock Lending & Borrowing — available stocks, bid prices, yield (short-selling demand).
market_signalsTechnical signals — breakouts, MA crossovers, volume spikes, RSI extremes.
market_heatmapIndex heatmap (Nifty 50, Bank Nifty, IT, Pharma, etc.) with multi-timeframe price changes.

💼 Portfolio Management (4 tools)

ToolDescription
get_user_portfolioHoldings with live prices, P&L (absolute + %), sector breakdown, weight %.
add_portfolio_stocksAdd stocks — supports bulk add and broker CSV import (Zerodha, Groww, Angel One, Dhan, Upstox, 5Paisa, ICICI Direct, Kotak, HDFC Sky, Motilal Oswal).
update_portfolio_stockUpdate quantity or average price for additional purchases or partial sells.
remove_portfolio_stocksRemove stocks from portfolio.

👁️ Watchlist (3 tools)

ToolDescription
get_watchlistAll followed stocks with symbol, name, sector, industry.
add_to_watchlistFollow one or more stocks (idempotent).
remove_from_watchlistUnfollow stocks.

Example Prompts

Stock Research

"Give me a complete analysis of Reliance Industries — financials, debt trend,
 analyst target price, and what mutual funds are holding it"

"Compare HDFC Bank and ICICI Bank — quarterly profit growth, ROE, shareholding
 changes, and analyst consensus"

"Pull the last 4 quarters of TCS financials — revenue growth, margin trend,
 and cash flow. How does it compare to Infosys?"

Stock Screening

"Find mid-cap stocks where FII holding increased last quarter, ROE > 15%,
 and RSI below 40 — accumulation candidates"

"Screen for stocks with MACD bullish crossover, volume 2x average, and
 within 10% of 52-week high"

"Which small-caps have debt-to-equity below 0.5, operating margin above 20%,
 and PE below 15?"

Institutional Flows

"FIIs have been selling for 5 days — show me daily numbers and which sectors
 they're pulling out of"

"Compare FII vs DII flows for the last month with Nifty 50 PE — are we near
 a historical bottom?"

"Show F&O participant-wise open interest — are FIIs net long or short in
 index futures?"

Portfolio & Watchlist

"Add these to my portfolio: 10 RELIANCE at ₹1350, 50 TCS at ₹3800,
 25 HDFCBANK at ₹1650"

"I bought 10 more RELIANCE at ₹1400 — update my portfolio and show
 my new average cost"

"Which of my holdings are technically weak? Show RSI and MACD for each"

"Watch TATAMOTORS, MARUTI, M&M — compare their PE ratios and quarterly
 sales growth"

Daily Market Briefing

"Full market briefing — FII/DII flows, F&O ban stocks, bulk deals above
 50 crores, top delivery stocks, and breakout signals"

"Is the market overvalued? Show Nifty 50 PE vs 5-year and 10-year averages"

"Show the Nifty 50 heatmap — which sectors dragged the index today?"

Data Coverage

CategoryWhat's included
StocksAll NSE + BSE listed companies (~8,200 including SME)
Price dataDaily OHLCV up to 2,000 days + weekly aggregation + delivery %
FinancialsQuarterly + annual P&L, balance sheet, cash flow, 50+ ratios
Screener326 fundamental ratios + real-time technical indicators + cross-field comparisons
TechnicalsRSI, SMA, EMA, MACD, Bollinger Bands, ADX, ATR, Supertrend, Stochastic, CCI, pivot points, 8 candlestick patterns
InstitutionalFII/DII daily cash flows, F&O participant OI, FPI sector-wise allocation, buy/sell streaks
Market dataBulk/block deals, F&O ban, IPOs, delivery %, MTF, SLBM, heatmaps, signals
AnalystBuy/hold/sell consensus + EPS/revenue/EBITDA/ROE forecasts with actuals vs estimates
OwnershipShareholding patterns (quarterly), dividend history, mutual fund scheme-level holdings
News & EventsSentiment-tagged news, corporate actions, filings (annual reports, concall transcripts)
PortfolioLive P&L tracking, sector breakdown, broker CSV import (10+ Indian brokers)

Environment Variables

VariableRequiredDefaultDescription
TAPETIDE_TOKENYes (local)—Personal API token from tapetide.com/settings/tokens
TAPETIDE_MCP_URLNohttps://mcp.tapetide.comOverride remote server URL
TAPETIDE_DEBUGNo0Set to 1 for debug logging to stderr

Rate Limits

PlanHourlyDaily
Remote MCP (OAuth)100 requests1,000 requests
Remote MCP (token)1,000 requests4,000 requests
Local MCP (npm)1,000 requests4,000 requests

Rate limit headers (X-RateLimit-Remaining, X-RateLimit-Limit, X-RateLimit-Reset) are included in every response.

Troubleshooting

ProblemSolution
TAPETIDE_TOKEN environment variable is requiredAdd your token to the env section of your MCP config
Token refresh failed (401)Token expired. Generate a new one at tapetide.com/settings/tokens
Rate limit exceededWait for reset (shown in error) or check usage at tapetide.com/settings/tokens
Server not respondingEnsure Node.js 18+ is installed (node --version)
Slow first requestNormal — pre-authenticates on startup. Subsequent requests are fast
Network errorsCheck internet. The bridge needs to reach mcp.tapetide.com

Set TAPETIDE_DEBUG=1 for detailed logging to stderr.

Links

  • tapetide.com — Web platform
  • tapetide.com/mcp — MCP documentation & setup guide
  • mcp.tapetide.com — Remote MCP endpoint
  • npm: tapetide-mcp — npm package
  • @tapetide_hq — X (Twitter)
  • GitHub — Source code

Contributing

Issues and pull requests are welcome. For bugs, include the error message and your MCP client name/version.

License

MIT — free to use, modify, and distribute.


Built by Tapetide — India's AI-first stock research platform

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

TAPETIDE_TOKEN*secret

API token from https://tapetide.com/settings/tokens (free, starts with tpt_rt_)

Categories
Data & Analytics
Registryactive
Packagetapetide-mcp
TransportSTDIO
AuthRequired
UpdatedMay 31, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.