Skip to main content
Glama

Helium MCP Server - News, Markets & AI

get_ticker

Read-only

Get comprehensive data for a stock, ETF, or crypto ticker.

Returns:
- ticker, name, type (e.g. 'stock', 'etf', 'crypto'), industry
- latest_price, page_url
- bullish_case, bearish_case, potential_outcomes, takeaway, analysis_date (AI-generated)
- price_forecast_days, price_forecast_percent, price_forecast_lower/upper_bound_percent (model price forecast)
- future_uncertainty_urls: dict with raw underlying Plotly data (extracted from each stored
  Plotly graph) for future_uncertainty (keyed by days-ahead), term_structure,
  volatility_surface, and return_profile — the data behind the interactive graphs the site
  now renders instead of the old static images (when available)
- future_uncertainty_last_updated, term_structure_last_updated
- iv_rank_percentile (0-100, IV rank over past year)
- long_vol_call, long_vol_put, short_vol_call, short_vol_put: full option pack dicts (when available)

Throws an error if the ticker is not recognized.

Args:
    ticker: Ticker symbol, e.g. 'AAPL', 'AMZN', 'BTC', 'ETH', 'SPY'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral details: it throws an error on unrecognized tickers, notes when fields are 'when available' (e.g., future_uncertainty_urls, option packs), and explains the structure of future_uncertainty_urls. This goes beyond the annotations and gives the agent a clear expectation of failure modes and optionality.

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 long but deliberately structured with bullet points and an Args section, front-loading the core purpose and return summary. Each line adds value—listing fields, explaining the Plotly data source, and noting optional availability. It is not tautological; every sentence earns its place, though it could be tightened without losing 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 read-only tool with a single parameter, the description is exceptionally complete. It covers the return payload in detail, error behavior, parameter format, and even clarifies that some fields are conditional. The output schema exists but is not described, so the description fills the gap entirely. An agent can call this tool correctly without any additional context.

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 description coverage is 0%, so the description must compensate. It does so with an explicit 'Args' section that defines the ticker parameter with format and concrete examples ('AAPL', 'AMZN', 'BTC', 'ETH', 'SPY'). This is exactly the kind of semantic guidance the schema lacks, and it fully covers the single parameter.

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 states a specific verb ('Get') and resource ('comprehensive data for a stock, ETF, or crypto ticker'), and it enumerates the distinct data categories returned, making it clear this is the go-to for ticker information. It clearly distinguishes from siblings like get_historical_options_data or search_news, which cover different domains.

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

Usage Guidelines4/5

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

The description implies usage by saying 'Get comprehensive data' and lists the data categories, but it does not explicitly state when not to use it or mention alternatives. However, the sibling tools are clearly different (news, biases, options), so an agent would infer this is the primary ticker data tool. The lack of explicit exclusions keeps it from a 5.

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.

Resources