crypto-sentiment-mcp

by kukapay
Verified

get_social_volume

Retrieve the total social volume (social_volume_total) for a given asset. It calculates the total number of social data text documents that contain the given search term at least once. Examples of documents are telegram messages and reddit posts.

Parameters:

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

Usage:

  • Call this tool to get the total number of social media mentions for an asset over a period.

Returns:

  • A string with the total social volume (e.g., "Bitcoin's social volume over the past 7 days is 15,000 mentions").

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_volumeArguments", "type": "object" }