get_token_sentiment
Analyze social sentiment for cryptocurrency tokens using AI to assess sentiment scores, social volume, and trending topics based on token address and blockchain network.
Instructions
Get AI-powered social sentiment analysis for a token.
Args: token_address: The token contract address (0x...) chain: Blockchain network
Returns: Sentiment score, social volume, and trending topics related to the token.
Price: $0.25
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token_address | Yes | ||
| chain | No | ethereum |
Implementation Reference
- coinrailz_mcp/__init__.py:274-290 (handler)The get_token_sentiment tool is registered and implemented in __init__.py, utilizing call_coinrailz_service to fetch sentiment data.
@mcp.tool() async def get_token_sentiment(token_address: str, chain: str = "ethereum") -> str: """ Get AI-powered social sentiment analysis for a token. Args: token_address: The token contract address (0x...) chain: Blockchain network Returns: Sentiment score, social volume, and trending topics related to the token. Price: $0.25 """ payload = {"tokenAddress": token_address, "chain": chain} result = await call_coinrailz_service("token-sentiment", payload) return json.dumps(result, indent=2)