Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides financial data for Indian listed companies from screener.in, enabling users to search companies and fetch financial statements, ratios, and peer comparisons.

README.md

screener-mcp

An MCP (Model Context Protocol) server that provides financial data for Indian listed companies from screener.in. Use it with Claude Desktop or any MCP-compatible client to query stock fundamentals, financial statements, and peer comparisons directly in your AI conversations.

Features

  • Search companies by name or ticker symbol
  • Fetch financial data (P&L, balance sheet, cash flow, ratios, peers, shareholding)
  • Supports both consolidated and standalone financials
  • Request only the fields you need to keep responses concise
  • Results cached for 5 minutes — repeated calls for the same company are instant
  • No API key required — uses screener.in's public data

Tools

| Tool | Description | |------|-------------| | search_company | Search for a company by name or ticker | | get_company_data | Financial data for a company. Use the optional fields parameter to fetch only what you need |

get_company_data fields

Pass a fields array to limit the response to only the sections you need:

| Field | Description | |-------|-------------| | ratios | Key financial ratios (Market Cap, P/E, P/B, ROE, ROCE, etc.) | | quarterly_results | Quarterly revenue, profit, and EPS | | profit_loss | Annual profit & loss statement | | balance_sheet | Annual balance sheet | | cash_flow | Annual cash flow statement | | shareholding | Promoter / FII / DII shareholding pattern | | peers | Peer comparison table |

Omit fields to fetch all sections at once.

Prerequisites

  • Node.js 18+
  • npm

Installation

git clone <repo-url>
cd screener-mcp
npm install
npm run build

Usage with Claude Desktop

Add the following to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

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

Restart Claude Desktop after saving the config.

Usage with Claude Code

Run this command after building (replace the path with where you cloned the repo):

claude mcp add screener -- node "/absolute/path/to/screener-mcp/dist/index.js"

Add --scope global to make it available in all projects:

claude mcp add --scope global screener -- node "/absolute/path/to/screener-mcp/dist/index.js"

Development

# Run in development mode (no build step needed)
npm run dev

# Build for production
npm run build

# Run production build
npm start

Tech Stack

Example Prompts

Once configured, you can ask Claude things like:

  • "What are the key financial ratios for Reliance Industries?"
  • "Show me the quarterly results for TCS"
  • "Compare HDFC Bank with its peers"
  • "Get the balance sheet for Infosys for the last 5 years"
  • "Search for companies with the name 'Tata'"

Notes

  • Data is scraped from screener.in's public pages — no login required for most data
  • Results depend on screener.in's availability and HTML structure
  • Financial data is sourced from BSE/NSE filings as aggregated by screener.in

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.