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": {
"signalfuse": {
"args": [
"-y",
"signalfuse-mcp"
],
"command": "npx"
}
}
}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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'signalfuse-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked signalfuse-mcp against OSV.dev.
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
Let AI agents create, discover, and track tokens across chains via Printr.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
Swiss accounting integration for Bexio. 310 tools for invoices, contacts, projects.
Brazilian public procurement (PNCP) and Federal Revenue CNPJ data — 16 tools, 4 prompts.
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)