crypto-sentiment-mcp

by kukapay
Verified

get_trending_words

Retrieve the top trending words in the crypto space over a specified period, aggregated and ranked by score.

Parameters:

  • days (int): Number of days to analyze trending words, defaults to 7.
  • top_n (int): Number of top trending words to return, defaults to 5.

Usage:

  • Call this tool to get a list of the most popular words trending in cryptocurrency discussions, ranked across the entire period.

Returns:

  • A string listing the top trending words (e.g., "Top 5 trending words over the past 7 days: 'halving', 'bullrun', 'defi', 'nft', 'pump'").

Input Schema

NameRequiredDescriptionDefault
daysNo
top_nNo

Input Schema (JSON Schema)

{ "properties": { "days": { "default": 7, "title": "Days", "type": "integer" }, "top_n": { "default": 5, "title": "Top N", "type": "integer" } }, "title": "get_trending_wordsArguments", "type": "object" }