crypto-sentiment-mcp

by kukapay
Verified

get_sentiment_balance

Retrieve the sentiment balance (sentiment_balance_total) for a given asset.

Parameters:

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

Usage:

  • Use this tool to get the average sentiment balance (positive minus negative sentiment) over a period.

Returns:

  • A string with the average sentiment balance (e.g., "Bitcoin's sentiment balance over the past 7 days is 12.5").

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