Screener MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_companiesA | Search Indian stock market companies by name. Returns matching symbols and URLs. Args: query: Company name to search (e.g., "tata", "reliance", "infosys") limit: Max results to return (1-50, default 10) |
| get_companyA | Get full company snapshot — overview, key ratios, analysis (pros/cons), and all financial tabs for any NSE-listed Indian company. Args: symbol: Stock symbol (e.g., TCS, INFY, RELIANCE, HDFCBANK) mode: "consolidated" (default) or "standalone" |
| get_company_rawA | Get raw HTML and section list for a company page — useful for extracting data not available via structured endpoints. Args: symbol: Stock symbol (e.g., TCS, INFY, RELIANCE, HDFCBANK) mode: "consolidated" (default) or "standalone" |
| get_company_tabA | Get a specific financial data tab for a company. Args: symbol: Stock symbol (e.g., TCS, INFY) tab: One of: analysis, peers, quarters, profit-loss, balance-sheet, cash-flow, ratios, shareholding, documents mode: "consolidated" (default) or "standalone" |
| compare_companiesA | Compare 2 or more companies side-by-side on key metrics (market cap, PE, ROE, dividend yield, etc.). Args: symbols: Comma-separated stock symbols (e.g., "TCS,INFY,WIPRO") mode: "consolidated" (default) or "standalone" |
| list_sectorsA | List all 50+ Indian stock market sectors (Pharma, IT, Banks, Auto, etc.) with their slugs. |
| get_sector_dataA | Get companies listed in a specific market sector with key financial metrics. Args: sector: Sector slug (e.g., "pharmaceuticals-biotechnology", "it-software", "banks-private-sector") page: Page number (default 1) limit: Results per page (1-50, default 50) |
| list_screensA | Browse or search public stock screens (user-created filters like "Magic Formula", "Growth Stocks", "High Dividend Yield"). Args: page: Page number (default 1) q: Search screens by title/description (e.g., "dividend", "growth", "undervalued") sort: Sort by "title" (alphabetical) or "screen_id" (recency) |
| get_screen_detailsA | Run a specific stock screen and get matching companies with their data. Args: screen_id: Screen ID (from list_screens results) slug: Screen URL slug (from list_screens results) page: Page number (default 1) limit: Results per page (1-50, default 50) |
| get_market_overviewA | Get a quick market overview combining top sectors and trending screens. Args: top_n: Number of top items to return per category (default 5) |
| health_checkA | Check if the Screener API is reachable and healthy. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| analyze_company | Deep-dive analysis of an Indian listed company. Args: symbol: Stock symbol to analyze (e.g., TCS, RELIANCE) |
| screen_stocks | Help find stocks matching specific criteria. Args: criteria: Natural language description of what you're looking for (e.g., "high dividend pharma stocks") |
| compare_stocks | Structured comparison of multiple stocks. Args: symbols: Comma-separated symbols to compare (e.g., "TCS,INFY,WIPRO") |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool has a distinct purpose: raw HTML, sector listing, company search, full snapshot, specific tabs, comparison, sector data, screen browsing, screen execution, market overview, and health check. No overlap in functionality.
All tools follow a consistent verb_noun pattern (e.g., 'get_company', 'list_sectors', 'search_companies') using snake_case, making them predictable and easy to understand.
11 tools cover the core functionalities needed for Indian stock market data retrieval without unnecessary bloat or missing essentials, fitting the typical well-scoped range.
The tool surface covers all major operations: company search, detailed financial data, comparisons, sector exploration, screeners, and market overview. No obvious gaps for a read-only data API.