Server data from the Official MCP Registry
Crypto market-signal MCP tools (regime, sentiment, price, risk) via RapidAPI. Needs RAPIDAPI_KEY
Crypto market-signal MCP tools (regime, sentiment, price, risk) via RapidAPI. Needs RAPIDAPI_KEY
A well-structured MCP server for crypto market signals backed by RapidAPI endpoints. Authentication is properly delegated to RapidAPI (RAPIDAPI_KEY via environment variable), no hardcoded secrets are present, and input validation uses Zod schemas. The server has appropriate permissions for its purpose (network_http to RapidAPI, env_vars for credentials). A test-only internal proxy secret exists but is clearly documented and isolated to testing, and does not affect production security.
4 files analyzed · 4 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: RAPIDAPI_KEY
Environment variable: RAPIDAPI_HOST
Environment variable: BASE_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-stelardigital-stelar-signals-mcp": {
"env": {
"BASE_URL": "your-base-url-here",
"RAPIDAPI_KEY": "your-rapidapi-key-here",
"RAPIDAPI_HOST": "your-rapidapi-host-here"
},
"args": [
"-y",
"stelar-signals-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP (Model Context Protocol) server that gives any MCP-compatible AI agent (Claude Desktop, Claude Code, Cursor, etc.) six crypto market-signal and utility tools, backed by the same classifier that runs a live production grid-trading system, plus Claude-powered text tools.
This package ships with no secrets of ours. Each user brings their own free or paid RapidAPI key — see "Get a key" below.
| Tool | What it does |
|---|---|
crypto_regime | Market regime (chop / trend_up / trend_down / high_vol) + grid-suitability verdict for SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA |
crypto_sentiment | Sentiment score (-1..+1) + label for free text or a crypto asset's recent price action |
summarize | 3-5 sentence LLM summary of a URL or raw text |
factcheck | true/false/uncertain verdict + confidence + reasoning for a claim |
pricecheck | Price, 24h/7d change, bullish/bearish/neutral signal for a major crypto asset |
token_risk | Volatility/drawdown risk regime (low/med/high) vs 30-day baseline, for position sizing |
Free tier (50 requests/mo) and paid tiers (Pro $9.90, Ultra $24.90, Mega $49.90) at:
https://rapidapi.com/StelarDigital/api/stelar-crypto-signals-ai-toolkit?src=mcp
Sign up, subscribe to a plan, and copy your X-RapidAPI-Key from the
RapidAPI dashboard's code snippet for this API — that snippet also shows the
exact gateway host to use if it differs from the default below.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"stelar-signals": {
"command": "npx",
"args": ["-y", "stelar-signals-mcp"],
"env": {
"RAPIDAPI_KEY": "YOUR_RAPIDAPI_KEY"
}
}
}
}
claude mcp add stelar-signals -e RAPIDAPI_KEY=YOUR_RAPIDAPI_KEY -- npx -y stelar-signals-mcp
git clone https://github.com/stelardigital/stelar-signals-mcp
cd stelar-signals-mcp
npm install
RAPIDAPI_KEY=YOUR_RAPIDAPI_KEY node server.js
| Env var | Required | Default | Purpose |
|---|---|---|---|
RAPIDAPI_KEY | yes | — | Your RapidAPI subscriber key |
RAPIDAPI_HOST | no | stelar-crypto-signals-ai-toolkit.p.rapidapi.com | Override only if your RapidAPI dashboard shows a different gateway host for this listing |
BASE_URL | no | https://${RAPIDAPI_HOST} | Advanced: point at a different base URL entirely (e.g. for local testing against a self-hosted mirror) |
| Tier | Price | Requests/mo |
|---|---|---|
| Basic | Free | 50 |
| Pro | $9.90/mo | 2,000 |
| Ultra | $24.90/mo | 10,000 |
| Mega | $49.90/mo | 50,000 |
This npm package itself is free and MIT-licensed. You pay RapidAPI directly for API usage above the free tier; Stelar Digital never sees or stores your key.
crypto_regime, pricecheck, and token_risk cover 8 major pairs only
(SOL, XLM, BTC, ETH, XRP, DOGE, LTC, ADA) — not arbitrary tokens.crypto_sentiment, summarize, and factcheck are LLM-backed (Claude
Haiku) — treat outputs as a fast first-pass signal, not ground truth.
factcheck returns uncertain for opinions, unverifiable claims, or
anything requiring live data the model doesn't have.summarize with a url fetches the page server-side; very large or
JS-rendered pages may summarize poorly or fail — pass text directly for
best results.MIT — see LICENSE.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.