Skip to main content
Glama
myfinancialria

MyFinancial Market Data MCP

Stock Screener (Technical)

screen_stocks_technical
Read-onlyIdempotent

Screen Indian stocks using technical indicators like RSI, MACD, moving averages, and volume crossovers to identify trading opportunities on real-time market data.

Instructions

Screen Indian stocks by technical indicators (RSI, MACD, moving averages, crossovers, volume, momentum) on real-time data. For fundamental screening (PE, ROCE, Sales, Growth), use screen_stocks instead.

Each filter is { left: field, operation, right: number | field }. Operations: "greater", "less", "equal", "in_range" (right is [min,max]), "crosses_above", "crosses_below" (crossover today).

FIELDS: close, open, high, low, volume, change, change_abs, market_cap_basic | SMA5/10/20/50/100/200, EMA5/10/20/50/100/200 | RSI, RSI[1], MACD.macd, MACD.signal, Stoch.K, Stoch.D, CCI20, ADX, AO, Mom, ATR | BB.upper, BB.lower | Pivot.M.Classic.R1/R2/S1/S2 | Recommend.All (-1..1), Recommend.MA, Recommend.Other | Perf.W, Perf.1M, Perf.3M, Perf.6M, Perf.Y, Perf.YTD | average_volume_10d_calc, average_volume_30d_calc, relative_volume_10d_calc | price_earnings_ttm, price_book_fq, dividend_yield_recent

⚠️ market_cap_basic is absolute ₹, NOT Cr (1 Cr = 10,000,000), so 5000 Cr = 50000000000.

EXAMPLE — oversold large-caps: [{"left":"RSI","operation":"less","right":30},{"left":"market_cap_basic","operation":"greater","right":50000000000}]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results
columnsNoFields to return
filtersNoREQUIRED. Filter conditions (AND logic). Example: [{"left":"RSI","operation":"less","right":30}]
sort_byNoSort fieldmarket_cap_basic
sort_orderNodesc

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive safety. The description adds contextual behavior: data is real-time, crossovers are 'crossover today', filters combine with AND logic, and market_cap_basic is in absolute rupees rather than crores. This meaningfully extends beyond the annotations.

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

Conciseness4/5

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

The description is dense but organized: purpose, alternate tool, filter syntax, operations, fields, unit warning, and example. It is front-loaded with the core action and routing, and the long field enumeration is directly necessary for correct invocation. No filler sentences exist, though it could be tighter if a reference document were available.

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

Completeness3/5

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

With no output schema, the description should explain what the tool returns. It never describes the response shape, default columns, or result container, which is a clear gap given the columns and limit parameters. The extensive input guidance makes it adequate, but the missing output semantics prevent full completeness.

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 coverage is 80%, establishing a baseline of 3. The description significantly enriches parameter understanding by defining the filter object shape, enumerating all operations (including in_range and crossover semantics), providing a full field vocabulary, and giving a concrete example. The only minor inconsistency is marking filters as REQUIRED while the schema does not enforce this, but the added detail still outweighs that.

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 opens with a specific action — 'Screen Indian stocks by technical indicators' — and names the resource (real-time Indian stock data). It explicitly lists indicator families (RSI, MACD, moving averages, crossovers, volume, momentum) and distinguishes itself from screen_stocks, making the tool’s scope unmistakable.

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

Usage Guidelines5/5

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

It provides an explicit routing rule: for fundamental screening (PE, ROCE, Sales, Growth), use screen_stocks instead. This directly answers when to use this tool versus its sibling, going beyond implied usage to a clear directive with an example.

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