MCP server for SignalFuse — trading intelligence API.
Adds four tools to any MCP-compatible AI agent:
get_signal— fused directional signal: sentiment + macro + market structureget_regime— current risk-on / risk-off macro regimeget_sentiment— raw social sentiment breakdownget_signal_batch— all assets in one call
npm install -g signalfuse-mcpAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"signalfuse": {
"command": "signalfuse-mcp"
}
}
}Restart Claude Desktop. Ask Claude: "What's the signal for BTC?" — it will call SignalFuse automatically.
Add to your project's .mcp.json:
{
"signalfuse": {
"command": "signalfuse-mcp"
}
}Free trial: 25 free calls, no signup:
curl -X POST https://api.signalfuse.co/v1/credits/trial \
-H "Content-Type: application/json" \
-d '{"wallet":"YOUR_ETH_ADDRESS"}'Then pass the returned credit_token in tool calls.
Bulk credits: Buy starter (500 calls) or pro (5000 calls) packs.
Note: This MCP server uses credit tokens for authentication. For x402 per-call payment (automatic USDC on Base), use the SignalFuse Python client which has full x402 SDK integration.
Full docs at https://signalfuse.co
SignalFuse provides a data fusion API, not financial advice. Signals are mathematical composites that can be wrong. Trade at your own risk.
MIT