Fused crypto trading signals — sentiment, macro regime, and market structure in one call.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-hypeprinter007-stack-signalfuse": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for SignalFuse — trading intelligence API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for io.github.hypeprinter007-stack/signalfuse and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.

MCP server and REST API for crypto trading signals, sentiment analysis, macro regime classification, strategy arena, web search, and sandboxed code execution. Designed for AI agents, LLMs, and autonomous trading systems.
https://api.signalfuse.cohttps://api.signalfuse.co/openapi.jsonhttps://api.signalfuse.co/.well-known/x402https://api.signalfuse.co/llms.txtnpx signalfuse-mcp
Or install globally:
npm install -g signalfuse-mcp
pip install signalfuse
| Method | Path | Description | Price |
|---|---|---|---|
| GET | /v1/signal/{symbol} | Fused directional signal with entry/TP/SL | $0.010 |
| GET | /v1/signal/batch | Signals for all assets in one call | $0.075 |
| GET | /v1/sentiment/{symbol} | ModernFinBERT sentiment analysis | $0.002 |
| GET | /v1/regime | Macro regime classification (risk-on/off/neutral) | $0.001 |
| GET | /v1/arena/leaderboard | Strategy Arena rankings | FREE |
| GET | /v1/arena/{strategy_id}/{symbol} | Signal from a specific arena strategy | $0.001 |
| GET | /v1/gateway/search/brave | Brave web search | $0.008 |
| POST | /v1/gateway/search/tavily | Tavily AI-powered web search | $0.012 |
| POST | /v1/gateway/search/fused | Brave + Tavily fused and deduplicated | $0.015 |
| POST | /v1/gateway/execute/e2b | Sandboxed code execution (Python/JS) | $0.005 |
| GET | /v1/pricing | Pricing information | FREE |
| GET | /v1/credits/balance | Credit balance check | FREE |
| POST | /v1/credits/trial | Claim 5 free trial credits | FREE |
Get 5 free credits with no signup. Send your Ethereum wallet address:
curl -X POST https://api.signalfuse.co/v1/credits/trial \
-H "Content-Type: application/json" \
-d '{"wallet": "0xYOUR_ETH_ADDRESS"}'
Response:
{
"credit_token": "sf_abc123...",
"credits": 5,
"wallet": "0xYOUR_ETH_ADDRESS"
}
Pass the returned credit_token as the X-Credit-Token header on subsequent requests, or use it in MCP tool calls.
curl https://api.signalfuse.co/v1/signal/BTC \
-H "X-Credit-Token: sf_abc123..."
{
"symbol": "BTC",
"signal": "long",
"signal_strength": 74,
"confidence": 0.82,
"regime": "risk_on",
"components": {
"social": {"score": 0.49, "label": "bullish"},
"macro": {"score": 0.63, "label": "bullish"},
"market": {"score": 0.42, "label": "long_bias"}
},
"updated_at": "2026-04-04T12:00:00Z"
}
curl https://api.signalfuse.co/v1/sentiment/ETH \
-H "X-Credit-Token: sf_abc123..."
{
"symbol": "ETH",
"score": 0.65,
"label": "bullish",
"model": "ModernFinBERT",
"updated_at": "2026-04-04T12:00:00Z"
}
curl https://api.signalfuse.co/v1/regime \
-H "X-Cred
... [View full README on GitHub](https://github.com/hypeprinter007-stack/signalfuse-mcp#readme)