Skip to main content
Glama

Inferventis — Financial Data, News & Web MCP

finnhub_stock_quote

Retrieves real-time stock price quotes and company information for any publicly traded company via the Finnhub API. Returns current price, intraday high and low, percentage change from previous close, previous close price, sector, and exchange. Use stock_quote when an agent needs to look up a stock price, check intraday market performance, retrieve company sector data, monitor equity portfolio values, or answer any question about the current trading price of a publicly listed company. Prefer stock_quote over stock_price_lite when the agent needs price change, intraday range, company name, or sector — stock_price_lite returns only the raw current price with no additional context. Do not use for cryptocurrency prices — use crypto_price (CoinGecko, 10,000+ assets) or crypto_price_lite for a lightweight variant. Do not use for fiat currency conversion — use currency_convert or currency_fx_lite. Requires a Finnhub API key to be configured on the server.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYesStock ticker symbol in uppercase. Examples: AAPL (Apple), MSFT (Microsoft), TSLA (Tesla), GOOGL (Alphabet), AMZN (Amazon), NVDA (Nvidia). Must be a valid exchange-listed ticker symbol.
include_company_infoNoWhether to include company name, sector, and exchange details alongside the price quote. Defaults to true. Set to false for a faster, price-only response.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added
  2. Removed
  3. Added
  4. Removed
  5. Changed2 schema fields changed
    • changedInput schema / properties / include_company_info / description
      Previous value: -"Whether to include company name, sector and exchange details alongside the price. Defaults to true."New value: +"Whether to include company name, sector, and exchange details alongside the price quote. Defaults to true. Set to false for a faster, price-only response."
    • changedInput schema / properties / symbol / description
      Previous value: -"Stock ticker symbol in uppercase e.g. AAPL for Apple, MSFT for Microsoft, TSLA for Tesla, GOOGL for Alphabet. Must be a valid exchange-listed ticker."New value: +"Stock ticker symbol in uppercase. Examples: AAPL (Apple), MSFT (Microsoft), TSLA (Tesla), GOOGL (Alphabet), AMZN (Amazon), NVDA (Nvidia). Must be a valid exchange-listed ticker symbol."
  6. First observed

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the API key requirement, the exact data returned (price, intraday high/low, percentage change, previous close, sector, exchange), and the behavior of include_company_info (defaults true, false for faster response). It does not cover rate limits or error handling, but overall is transparent.

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 longer than average but well-structured: purpose first, then output data, then usage guidance, then exclusions, then API key note. Every sentence adds value. Minor flaw: it refers to the tool as 'stock_quote' instead of 'finnhub_stock_quote', which could confuse an agent.

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 2-parameter read-only tool with no output schema, the description is complete. It explains the returned data, prerequisite (API key), when to use, when not to use, and how it differs from sibling tools. No gaps that would prevent correct selection or invocation.

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 coverage is 100% for both parameters, with detailed descriptions and examples for symbol and include_company_info. The description adds minor extra context (set include_company_info to false for faster response) but otherwise repeats schema content. Baseline 3 is 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 uses a specific verb ('retrieves') and resource ('real-time stock price quotes and company information') and clearly distinguishes this tool from siblings like stock_price_lite, crypto_price, and currency_convert. It states exactly what it does, making it easy for an agent to identify its purpose.

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?

Provides explicit when-to-use guidance ('Use stock_quote when an agent needs...'), explicit preference over stock_price_lite when richer data is needed, and clear exclusions ('Do not use for cryptocurrency... Do not use for fiat currency conversion'). Names specific alternative tools for these exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.