crypto-sentiment-mcp

by kukapay
Verified

get_social_dominance

Retrieve the social dominance (social_dominance_total) for a given asset. Social Dominance shows the share of the discussions in crypto media that is referring to a particular asset or phrase.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • days (int): Number of days to calculate average social dominance, defaults to 7.

Usage:

  • Call this tool to get the percentage of social media discussion dominated by the asset.

Returns:

  • A string with the average social dominance (e.g., "Bitcoin's social dominance over the past 7 days is 25.3%").

Input Schema

NameRequiredDescriptionDefault
assetYes
daysNo

Input Schema (JSON Schema)

{ "properties": { "asset": { "title": "Asset", "type": "string" }, "days": { "default": 7, "title": "Days", "type": "integer" } }, "required": [ "asset" ], "title": "get_social_dominanceArguments", "type": "object" }