Skip to main content
Glama
myfinancialria

MyFinancial Market Data MCP

Market Data Feeds

get_market_data
Read-onlyIdempotent

Fetch today's NSE/BSE market-wide feeds: bulk deals, F&O bans, high-delivery stocks, IPOs, MTF, SLBM, and technical signals. Choose a dataset to get the data.

Instructions

Get one of today's market-wide data feeds. Pass dataset to choose:

  • deals — today's NSE/BSE bulk & block deals (deal type, symbol, client name, buy/sell, qty, price, value). Large institutional trades.

  • fno_ban — stocks in F&O ban or nearing it (MWPL >= 80%; 95%+ is banned).

  • deliveries — today's highest delivery-% stocks (>=50%), indicating genuine buying over speculation.

  • ipo — current and upcoming IPOs: dates, price band, issue size, and subscription by category.

  • mtf — Margin Trading Facility: net MTF and per-stock funded qty/amount. Rising = bullish leverage, falling = deleveraging.

  • slbm — Stock Lending & Borrowing: lendable stocks with best bid and yield. High yield = strong short-selling demand.

  • signals — technical signals firing today: breakouts, MA crossovers, volume spikes, RSI extremes. For index PE/PB valuation history use market_valuations; for an index's constituent heatmap use market_heatmap; for a single stock's own deal history use get_stock_deals.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
datasetNoREQUIRED. Which feed to fetch: deals, fno_ban, deliveries, ipo, mtf, slbm, signals.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.8/5.0
Behavior4/5

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

Annotations already declare this tool read-only, idempotent, and non-destructive. The description adds meaningful behavioral context beyond that: feeds are market-wide, scoped to 'today', and each feed is described with its focus and interpretation, e.g., 'Rising = bullish leverage, falling = deleveraging.' It does not go into pagination or response shape, but annotations cover the safety profile.

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 long but every sentence serves a purpose: each bullet maps one enum value to a concrete and useful explanation. The opening sentence and routing sentence keep the structure tight, and there is no redundant or filler content.

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

Completeness5/5

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

For a single-enum-parameter tool with no output schema, the description is nearly self-sufficient: it lists all possible values, explains what each returns, and points to sibling tools for adjacent use cases. The only small ambiguity is whether dataset is truly required, but the param-level 'REQUIRED' and 'Pass dataset to choose' make the intent clear.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds substantial meaning beyond the simple enum list. Each dataset value is expanded with the fields it returns (e.g., deals includes 'deal type, symbol, client name, buy/sell, qty, price, value') and interpretive guidance, which is exactly what an agent needs to select the correct enum.

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 uses a specific verb and resource—'Get one of today's market-wide data feeds'—and enumerates the seven feed choices with concrete content for each. It also distinguishes itself from siblings by explicitly naming market_valuations, market_heatmap, and get_stock_deals as alternatives for related but different data.

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?

The final sentence gives explicit routing guidance: use market_valuations for index PE/PB history, market_heatmap for index heatmaps, and get_stock_deals for a single stock's deal history. This tells the agent exactly when not to use this tool and which alternative to pick.

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