Skip to main content
Glama
sanjeev0291

nse-research-mcp

by sanjeev0291

screen_stocks

Filter NSE stocks by fundamentals and price metrics, including market cap, PE, ROE, dividend yield, and sector, then sort results by market cap, yield, or volume.

Instructions

Screen all NSE-listed stocks by fundamentals and price action (server-side, fast). Filters: market cap in ₹ crore, PE (ttm), PB, ROE %, dividend yield %, quarterly revenue growth %, EPS growth %, 52-week change %, price, 3-month average volume, Yahoo sector (one of: Basic Materials, Communication Services, Consumer Cyclical, Consumer Defensive, Energy, Financial Services, Healthcare, Industrials, Real Estate, Technology, Utilities) or industry. sort_by: market_cap | pe | dividend_yield | change_1d | change_52w | volume | price. limit ≤ 250.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
max_pbNo
max_peNo
min_peNo
sectorNo
sort_byNomarket_cap
industryNo
ascendingNo
max_priceNo
min_priceNo
min_roe_pctNo
min_avg_volumeNo
max_market_cap_crNo
min_market_cap_crNo
max_52w_change_pctNo
min_52w_change_pctNo
min_eps_growth_pctNo
min_dividend_yield_pctNo
min_revenue_growth_pctNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It does disclose useful behavioral context ('server-side, fast', 'limit ≤ 250') but does not explicitly state that this is a read-only query, how results are returned, or how filters combine. 'Screen' semantically implies non-mutating behavior, but the safety profile is implicit rather than stated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but focused: the first sentence states the core behavior and performance trait, then the second sentence enumerates filters and the sort/limit contract. There is no filler, and the most important scoping information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 19 optional parameters, no output schema, and no annotations, the description covers nearly all invocation-critical information: scope, filter domains, units, allowed sector values, sort options, and a hard limit. It does not describe the output shape or the default sort ordering beyond what the schema already provides, but those gaps are minor for selecting and invoking the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It does add real meaning: units ('₹ crore', 'PE (ttm)', '3-month average volume'), the allowed Yahoo sector enum, valid sort_by values, and the result cap. It does not fully map every schema field (for example, 'ascending' and the min/max pairs) but the parameter names in the schema are largely self-explanatory.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Screen'), a clear resource ('all NSE-listed stocks'), and a well-defined operation ('by fundamentals and price action'). Sibling search tools like search_stocks and get_top_movers are clearly different because this is a market-wide fundamental/price screener, not a name search or a pre-computed movers list.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies when to use this tool: when the agent needs to filter across the entire NSE-listed universe on fundamentals and price metrics. It does not explicitly name search_stocks as an alternative for name/symbol lookup, so it stops short of a full when-not-to-use statement.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.