cerebrus_sentiment
Obtain aggregated crypto market sentiment analysis including fear/greed, momentum, and funding bias. Pay $0.01 USDC via x402 micropayments.
Instructions
Get aggregated crypto market sentiment analysis. Returns overall sentiment, fear/greed, momentum, and funding bias. Not coin-specific. Cost: $0.01 USDC via x402.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/cerebrus_pulse_mcp/server.py:138-149 (registration)Registration of the cerebrus_sentiment tool in the list_tools() function with schema and description.
Tool( name="cerebrus_sentiment", description=( "Get aggregated crypto market sentiment analysis. " "Returns overall sentiment, fear/greed, momentum, and funding bias. " "Not coin-specific. Cost: $0.01 USDC via x402." ), inputSchema={ "type": "object", "properties": {}, }, ), - src/cerebrus_pulse_mcp/server.py:383-384 (handler)Handler logic for the cerebrus_sentiment tool: calls the /sentiment API endpoint via _api_get().
elif name == "cerebrus_sentiment": result = _api_get("/sentiment") - CLI helper mapping for the sentiment tool, defining the API path and empty parameter specs.
"sentiment": ("/sentiment", []),