A mcp server that provides real-time and historical Crypto Fear & Greed Index data, powered by the Alternative.me. This server exposes resources and tools for fetching and analyzing the Fear & Greed Index, making it easy to integrate into MCP-compatible clients, including Claude Desktop. - Current Index: Retrieve the latest Fear & Greed Index value and classification. - Historical Data: Fetch hist
Add this skill
npx mdskills install kukapay/crypto-feargreed-mcpProvides well-documented crypto sentiment data with resources, tools, and trend analysis capabilities
1# Crypto Fear & Greed Index MCP Server23A mcp server that provides real-time and historical Crypto Fear & Greed Index data, powered by the Alternative.me.45This server exposes resources and tools for fetching and analyzing the Fear & Greed Index, making it easy to integrate into MCP-compatible clients, including Claude Desktop.67891011## Features1213- **Current Index**: Retrieve the latest Fear & Greed Index value and classification.14- **Historical Data**: Fetch historical index values for a specified number of days.15- **Trend Analysis**: Analyze trends over time with statistics like average value and trend direction.16- **Tool-Only Support**: Includes tool versions of all resources for compatibility with tool-only MCP clients.17- **Prompt Generation**: Provides a prompt template for interpreting index values.1819### Resources2021- `fng://current`. Current crypto Fear & Greed Index. Output:22```23Crypto Fear & Greed Index (as of 2025-03-15 00:00:00 UTC):24Value: 4525Classification: Fear26```2728- `fng://history/{days}`. Historical Data of Crypto Fear & Greed Index.Output:29```30Historical Crypto Fear & Greed Index:312025-03-15 00:00:00 UTC: 45 (Fear)322025-03-14 00:00:00 UTC: 48 (Fear)33...34```3536### Tools3738- `get_current_fng_tool() -> str`.3940Current Index. Same as `fng://current`4142- `get_historical_fng_tool(days: int) -> str`.4344Historical Index Data. Same as `fng://history/{days}`4546- `analyze_fng_trend(days: int) -> str`.4748Index trend Analysis. Output:49```50Fear & Greed Index Analysis (30 days):51Latest Value: 45 (Fear) at 2025-03-15 00:00:00 UTC52Average Value: 47.353Trend: falling54Data points analyzed: 3055```5657### Prompts5859- `interpret_fng`6061Index Data Interpretation.6263Output:64```65Please interpret this Crypto Fear & Greed Index value and explain what it means for cryptocurrency markets (specifically Bitcoin): 4566```6768## Installation6970### Installing via Smithery7172To install Crypto Fear & Greed Index for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@kukapay/crypto-feargreed-mcp):7374```bash75npx -y @smithery/cli install @kukapay/crypto-feargreed-mcp --client claude76```7778Clone the repository:7980```bash81git clone https://github.com/kukapay/crypto-feargreed-mcp.git82cd crypto-feargreed-mcp83```8485Install for Claude Desktop86```87mcp install main.py --name "CryptoFearGreed"88```89Then enable it in your Claude Desktop configuration.9091For other clients, add a server entry to your configuration file:9293```94"mcpServers": {95 "crypto-feargreed-mcp": {96 "command": "uv",97 "args": [98 "--directory", "/your/path/to/crypto-feargreed-mcp",99 "run",100 "main.py"101 ]102 }103}104```105106## Examples107108After installation, ask:109110- "What's the current Crypto Fear & Greed Index?"111- "Show me the Crypto Fear & Greed Index trend for the last 30 days."112113Claude will automatically call the appropriate tools and provide responses.114115## License116This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.117118## Acknowledgments119120- Built with [MCP Python SDK](https://github.com/modelcontextprotocol/python-sdk).121- Data provided by [Alternative.me Fear & Greed Index API](https://api.alternative.me/fng/).
Full transparency — inspect the skill content before installing.