get_fear_greed
Retrieve the Crypto Fear & Greed Index to assess market sentiment, identify potential buying opportunities during extreme fear, and detect overheated markets during extreme greed.
Instructions
Get the Crypto Fear & Greed Index — a multi-source averaged sentiment score from 0 (Extreme Fear) to 100 (Extreme Greed). Classifications: Extreme Fear (0-25), Fear (26-40), Neutral (41-60), Greed (61-75), Extreme Greed (76-100). Includes per-source breakdown. Extreme Fear often signals buying opportunities; Extreme Greed often signals overheated markets.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/fear-greed.ts:14-16 (handler)The handler function for get_fear_greed tool.
export async function handler(_args: z.infer<typeof schema>) { return apiGet("/api/v1/sentiment/fear-greed"); } - src/tools/fear-greed.ts:12-12 (schema)The schema definition for get_fear_greed tool.
export const schema = z.object({}); - src/tools/fear-greed.ts:4-4 (registration)The registration name for get_fear_greed tool.
export const name = "get_fear_greed";