Skip to main content
Glama
hasancagrigungor

kapmcp

Quotes

get_quote
Read-onlyIdempotent

Fetch current market quotes for stocks, indices, FX, and commodities, delivering price, change, ranges, volume, and market cap. Invalid symbols return errors without failing the batch.

Instructions

Latest price data per symbol: last, previous close, change %, day and 52-week range, volume vs 3-month average, market cap, currency. Bad symbols return an error entry without failing the batch. Source: Yahoo Finance (delayed for BIST).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolsYesBIST tickers (THYAO), indices (XU100), FX (USDTRY), commodities (GOLD, BRENT) or full Yahoo symbols

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds meaningful behavioral context beyond those: bad symbols return an error entry without failing the whole batch, and Yahoo data is delayed for BIST. This is valuable but does not cover broader failure modes or rate limits.

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?

Every sentence earns its place: the first defines the payload and output fields, the second covers error isolation, and the third notes the source and BIST delay. There is no filler, and the core purpose is front-loaded.

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?

Given the single well-documented parameter, rich annotations, and an output schema, the description covers the essential remaining context: batch error behavior and source latency. Nothing critical is missing for an agent to invoke this tool correctly.

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%, so the symbol parameter is already well documented with accepted formats like THYAO, XU100, USDTRY, and GOLD. The tool description only reconfirms that data is per symbol and adds no new parameter-level semantics, making the baseline 3 appropriate.

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 clearly identifies a read-only quote retrieval action with a specific resource (latest price data per symbol) and enumerates the exact fields returned. The 'per symbol' batch framing and field list distinguish it from time-series or market-overview siblings like get_price_history and get_market_overview.

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

Usage Guidelines3/5

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

The description implies usage for current snapshot quotes and lists supported symbol categories, but it never explicitly says when to use this tool versus alternatives or when not to use it. Agents must infer that historical price data belongs to get_price_history.

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