crypto-sentiment-mcp

by kukapay
Verified

alert_social_shift

Detect significant shifts (spikes or drops) in social volume (social_volume_total) for a given asset.

Parameters:

  • asset (str): The cryptocurrency slug (e.g., "bitcoin", "ethereum"). Required.
  • threshold (float): Minimum percentage change (absolute value) to trigger an alert, defaults to 50.0 (i.e., 50%).
  • days (int): Number of days to analyze for baseline volume, defaults to 7.

Usage:

  • Call this tool to check if the latest social volume has significantly spiked or dropped compared to the previous average.

Returns:

  • A string indicating if a shift occurred (e.g., "Bitcoin's social volume spiked by 75.0% in the last 24 hours" or "Bitcoin's social volume dropped by 60.0% in the last 24 hours").

Input Schema

NameRequiredDescriptionDefault
assetYes
daysNo
thresholdNo

Input Schema (JSON Schema)

{ "properties": { "asset": { "title": "Asset", "type": "string" }, "days": { "default": 7, "title": "Days", "type": "integer" }, "threshold": { "default": 50, "title": "Threshold", "type": "number" } }, "required": [ "asset" ], "title": "alert_social_shiftArguments", "type": "object" }