Skip to main content
Glama

news_feed_get_mention_burst

Read-onlyIdempotent

[Read] Get a coin's 24h multi-platform social mention burst signal, growth, sentiment direction, platform breakdown, and display eligibility. For general sentiment ratios and sample tweets use get_social_sentiment; for individual social discussions use search_ugc. Read-only public research data. No account access, no order placement or fund transfers. Not investment advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
coinYesRequired non-empty cryptocurrency ticker, for example BTC. Leading and trailing whitespace is removed and the value is normalized to uppercase. Unknown or no-data tickers may return an empty result with hide_reason=no_data; no coin-dictionary validation is performed.
windowNoAggregation window. Only 24h is currently supported; default 24h.
platformsNoComma-separated social platforms; default all. Supported: all, gate_square, binance_square, twitter, telegram, youtube, reddit, discord. all cannot be combined with another platform.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
coinYes
windowYes
is_burstYesTrue when the upstream burst thresholds for baseline, sample size, and growth are all met.
trace_idNo
duration_msYes
growth_rateYesWeighted mention growth versus the previous 24h; null when no baseline exists.
hide_reasonYesWhy the signal should be hidden: no_data, insufficient_baseline, insufficient_sample, or not_burst; null when displayable.
display_colorYesDisplay color generated by the upstream service: red, green, or neutral.
evidence_summaryYesHuman-readable evidence summary; null when unavailable.
platform_breakdownYes
sentiment_directionYesbullish, bearish, or neutral.
current_mention_countYes
previous_mention_countYes
current_weighted_mention_countYes
previous_weighted_mention_countYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed19 schema fields changed
    • addedInput schema / additionalProperties
      Added value: +false
    • addedOutput schema / additionalProperties
      Added value: +false
    • addedOutput schema / properties / evidence_summary / description
      Added value: +"Human-readable evidence summary; null when unavailable."
    • removedOutput schema / properties / evidence_summary / oneOf
      Removed value: -[
      -  {
      -    "description": "Human-readable evidence summary; null when unavailable.",
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / evidence_summary / type
      Added value: +[
      +  "null",
      +  "string"
      +]
    • addedOutput schema / properties / growth_rate / description
      Added value: +"Weighted mention growth versus the previous 24h; null when no baseline exists."
    • removedOutput schema / properties / growth_rate / oneOf
      Removed value: -[
      -  {
      -    "description": "Weighted mention growth versus the previous 24h; null when no baseline exists.",
      -    "type": "number"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / growth_rate / type
      Added value: +[
      +  "null",
      +  "number"
      +]
    • addedOutput schema / properties / hide_reason / description
      Added value: +"Why the signal should be hidden: no_data, insufficient_baseline, insufficient_sample, or not_burst; null when displayable."
    • removedOutput schema / properties / hide_reason / oneOf
      Removed value: -[
      -  {
      -    "description": "Why the signal should be hidden: no_data, insufficient_baseline, insufficient_sample, or not_burst; null when displayable.",
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / hide_reason / type
      Added value: +[
      +  "null",
      +  "string"
      +]
    • addedOutput schema / properties / platform_breakdown / items / additionalProperties
      Added value: +false
    • addedOutput schema / properties / platform_breakdown / items / properties / growth_rate / description
      Added value: +"Weighted mention growth versus the previous window; null when no baseline exists."
    • removedOutput schema / properties / platform_breakdown / items / properties / growth_rate / oneOf
      Removed value: -[
      -  {
      -    "description": "Weighted mention growth versus the previous window; null when no baseline exists.",
      -    "type": "number"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / platform_breakdown / items / properties / growth_rate / type
      Added value: +[
      +  "null",
      +  "number"
      +]
    • addedOutput schema / properties / platform_breakdown / items / properties / sentiment_score / description
      Added value: +"Platform sentiment score; null when unavailable."
    • removedOutput schema / properties / platform_breakdown / items / properties / sentiment_score / oneOf
      Removed value: -[
      -  {
      -    "description": "Platform sentiment score; null when unavailable.",
      -    "type": "number"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • addedOutput schema / properties / platform_breakdown / items / properties / sentiment_score / type
      Added value: +[
      +  "null",
      +  "number"
      +]
    • changedOutput schema / properties / platform_breakdown / type
      Previous value: -"array"New value: +[
      +  "null",
      +  "array"
      +]
  2. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description reinforces this with 'Read-only public research data' and adds safety context not present in annotations: 'No account access, no order placement or fund transfers. Not investment advice.' This is extra value beyond what annotations provide. It does not contradict any annotation.

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?

Four sentences, zero filler. The purpose is front-loaded, alternatives are given next, and safety disclaimers finish. Every sentence earns its place. The structure is logical: what → when else → safety. Perfectly sized.

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?

The description covers the main function, the specific output facets, clear routing to siblings, and safety boundaries. An output schema is present, so return structure is handled there. The mention of 'display eligibility' and 'platform breakdown' gives agents a preview of the response without overpromising. Nothing an agent needs to decide whether to call this tool is missing.

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 every parameter (coin, window, platforms) has a thorough, standalone description. The tool description itself does not add parameter-level detail, but with full schema coverage the baseline is 3 and no compensation is required. The description's mention of 'platform breakdown' implicitly ties to the platforms parameter, but that's not substantial added semantics.

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 opens with a specific verb and resource: 'Get a coin's 24h multi-platform social mention burst signal, growth, sentiment direction, platform breakdown, and display eligibility.' It clearly lists the distinct outputs, and the sibling tools it names (get_social_sentiment, search_ugc) make the differentiation obvious. An agent can immediately tell this is the mention-burst tool, not a general sentiment or discussion search.

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?

Explicit guidance is given: 'For general sentiment ratios and sample tweets use get_social_sentiment; for individual social discussions use search_ugc.' This tells the agent when to pick an alternative. It also frames the query context ('24h multi-platform social mention burst') and includes caveats like 'No account access, no order placement or fund transfers,' which sets clear boundaries on legitimate use. No inference is required.

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.