Skip to main content
Glama

Nse Get Index Quote

nse_get_index_quote

Fetch a live NSE index snapshot such as NIFTY 50, NIFTY BANK, or NIFTY MIDCAP 100 to check current Indian market levels.

Instructions

Get a live NSE index snapshot (NIFTY 50, NIFTY BANK, NIFTY IT, ...).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
index_nameNoIndex name, e.g. 'NIFTY 50', 'NIFTY BANK', 'NIFTY MIDCAP 100'.NIFTY 50

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations exist, so the description carries the full burden. 'Live' hints at real-time data, but it says nothing about market-hours behavior, data staleness, rate limits, or whether the index_name must match an exact symbol — all material for a market-data call.

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?

One sentence, front-loaded with the verb and resource, zero filler. Appropriately sized for a single-parameter lookup.

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?

An output schema exists, so return values need not be explained, and the lone parameter is fully documented. The remaining gap is the unstated relationship to nse_get_quote and the lack of any market-data caveats.

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

Parameters3/5

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

Schema description coverage is 100% and the single parameter is fully documented with a default and examples, so the baseline is 3. The description's parenthetical examples duplicate what the schema already lists rather than adding new meaning.

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

Purpose4/5

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

Clear verb+resource: 'Get a live NSE index snapshot', with concrete index examples. It implies an index-level feed versus the sibling nse_get_quote (a security-level quote), but never states that distinction explicitly, so an agent must infer which to call.

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

Usage Guidelines2/5

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

No when-to-use guidance, no prerequisites, and no mention of the closest alternative (nse_get_quote for stocks vs this for indices). Usage is only implied by the word 'index'.

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