Skip to main content
Glama

Helium MCP Server - News, Markets & AI

get_ticker

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

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It is honest about error behavior ('Throws an error if the ticker is not recognized') and caveats fields 'when available' — good. However, it does not disclose data freshness sources beyond timestamps, potential staleness of AI-generated analysis, which fields may be null, or any rate-limit/authorization requirements. For a comprehensive read tool, more behavioral context would help.

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?

Organized with a clear bulleted return inventory followed by an Args section — good structure and front-loading of purpose. It's thorough but not bloated; every section adds information. The return list is long but necessary given the tool's comprehensive nature. Slightly verbose given the amount of returned-field detail, but this is justified for a broad fetch tool.

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 the description doesn't need to explain return types in depth, but it does a stellar job enumerating semantic meaning of each output field (AI-generated, keyed by days-ahead, IV rank over past year). For a single-param tool with an output schema, this is thorough. Could be marginally improved by stating data freshness caveats for AI-generated fields, but overall it's substantially complete for effective use.

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 coverage is 0% and there's a single required parameter 'ticker' with no type description in the schema. The description compensates well by giving concrete examples ('AAPL', 'AMZN', 'BTC', 'ETH', 'SPY') and correctly stating it accepts stocks, ETFs, and crypto — meaningfully expanding what the bare schema provides. Though it doesn't mention case sensitivity or format normalization, the examples are sufficient for a single simple 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 is exceptionally clear: 'Get comprehensive data for a stock, ETF, or crypto ticker.' It uses a specific verb+resource and enumerates the full data payload across multiple categories (price, AI analysis, forecast, options, IV). It distinguishes well from sibling tools like get_historical_options_data, get_option_price, and search_news by its broad, all-inclusive scope.

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 clearly states what it returns and that it throws an error for unrecognized tickers, giving the agent good context for expected behavior. However, it does not explicitly contrast against siblings like get_bias_from_url or search_news, nor does it state when to prefer this over more specialized lookups. The primary use case is implied (fetch everything for a ticker) but no when-not-to-use guidance is given.

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.

TDQS

A4.4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but two pairs could cause confusion: get_all_source_biases vs. get_source_bias, and search_news vs. search_balanced_news. The descriptions explicitly differentiate them (list vs. single source; RSS vs. synthesized stories), so an agent can disambiguate with careful reading.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: get_* for retrievals and search_* for searches. Any variations (e.g., get_all_source_biases vs. get_source_bias) are natural qualifiers and don't break the pattern.

Tool Count5/5

With 10 tools spanning news bias analysis, options data, ticker data, and trading strategies, the count is well-scoped. Each tool has a distinct role and the set is neither too thin nor overloaded.

Completeness4/5

The surface covers the core workflows: searching news, analyzing bias at both article and source level, retrieving market data, options chains, and strategy rankings. Minor gaps exist, such as no direct way to fetch a full article by ID or list all news sources, but these are workarounds with existing tools.

Resources