crypto-intel-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| crypto_get_quoteA | Get a current price snapshot for a cryptocurrency. Informational (not a buy/sell signal): live price, 24h change, market-cap rank, 24h volume, and distance from all-time high. Examples: - "What's bitcoin trading at?" -> coin='BTC' - "How far is ETH from its all-time high?" -> coin='ethereum' |
| crypto_momentumA | Score a coin's price momentum across 24h, 7d and 30d into one signal. Returns a directional score from -100 (breaking down) to +100 (strong broad-based upward momentum), weighting recent action more heavily. Examples: - "Does solana have momentum?" -> coin='SOL' - "Is bitcoin trending up or down?" -> coin='bitcoin' |
| crypto_trendingA | List the coins the market is searching for most right now (CoinGecko trending). A breadth/attention indicator — useful for spotting where retail interest is concentrating. Takes no coin. Examples: - "What crypto is trending right now?" - "Show me the hot coins today." |
| crypto_analyzeA | Run a full analysis of a coin and return one scored verdict. Blends multi-timeframe momentum with whether the coin is trending and the overall crypto market tide into a single verdict (RISK-ON → AVOID) with a gauge and the reasoning behind it. This is the primary tool — prefer it for "should I look at X?" questions. Examples: - "Give me a full read on bitcoin" -> coin='BTC' - "Should I be looking at SOL?" -> coin='solana' |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: crypto_analyze gives a full verdict, crypto_get_quote provides price snapshots, crypto_momentum scores momentum, and crypto_trending lists trending coins. No overlapping responsibilities.
All tools follow a consistent snake_case pattern with the 'crypto_' prefix, using descriptive verbs (analyze, get_quote, momentum, trending). No mixing of conventions.
Four tools is well-scoped for a crypto analysis server. Each tool serves a necessary function without redundancy or omission, covering core analysis needs.
The tool set covers the primary domain: full analysis, price snapshot, momentum, and trending. While minor gaps like historical data or news exist, the core workflow of assessing a coin's potential is complete.