CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Signalfuse

hypeprinter007-stack/signalfuse-mcp
2authSTDIOregistry active
Summary

SignalFuse wires up 11 trading and research tools over x402 micropayments: crypto signals with entry/TP/SL levels for BTC, ETH, SOL and seven other assets, ModernFinBERT sentiment scoring, macro regime classification, a Strategy Arena leaderboard tracking four live AI strategies, web search through Brave and Tavily with result fusion, and sandboxed Python/JS execution via E2B. Pricing runs from free (leaderboard, balance checks) to $0.075 for batch signals. You get 5 free trial credits by passing an ETH address, then pay per call with USDC on Base or use prepaid credit tokens. Works as an MCP server in Claude Desktop and Code, or import the Python client and LangChain tools directly.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

SignalFuse

SignalFuse MCP Server

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.

  • Base URL: https://api.signalfuse.co
  • OpenAPI spec: https://api.signalfuse.co/openapi.json
  • x402 discovery: https://api.signalfuse.co/.well-known/x402
  • llms.txt: https://api.signalfuse.co/llms.txt
  • Payment: x402 USDC on Base (no API keys needed) or prepaid credit tokens
  • Free trial: 5 credits, no signup required

What SignalFuse Does

  • Generates directional trading signals (long/short/neutral) for BTC, ETH, SOL, DOGE, PEPE, WIF, BONK, ARB, OP, AVAX with entry price, take-profit, and stop-loss levels
  • Runs ModernFinBERT sentiment analysis on crypto social and news data
  • Classifies the macro regime as risk-on, risk-off, or neutral using multi-factor economic indicators
  • Operates a Strategy Arena where 4 AI strategies (EMA Breakout, RSI Extremes, RSI Reversion, VWAP Reversion) compete head-to-head with live P&L tracking
  • Proxies web search through Brave Search and Tavily with result deduplication and fusion
  • Executes Python and JavaScript code in sandboxed E2B environments (60s timeout)

Installation

npm (MCP server)

npx signalfuse-mcp

Or install globally:

npm install -g signalfuse-mcp

Python client (x402 payments built in)

pip install signalfuse

Endpoint Reference

MethodPathDescriptionPrice
GET/v1/signal/{symbol}Fused directional signal with entry/TP/SL$0.010
GET/v1/signal/batchSignals for all assets in one call$0.075
GET/v1/sentiment/{symbol}ModernFinBERT sentiment analysis$0.002
GET/v1/regimeMacro regime classification (risk-on/off/neutral)$0.001
GET/v1/arena/leaderboardStrategy Arena rankingsFREE
GET/v1/arena/{strategy_id}/{symbol}Signal from a specific arena strategy$0.001
GET/v1/gateway/search/braveBrave web search$0.008
POST/v1/gateway/search/tavilyTavily AI-powered web search$0.012
POST/v1/gateway/search/fusedBrave + Tavily fused and deduplicated$0.015
POST/v1/gateway/execute/e2bSandboxed code execution (Python/JS)$0.005
GET/v1/pricingPricing informationFREE
GET/v1/credits/balanceCredit balance checkFREE
POST/v1/credits/trialClaim 5 free trial creditsFREE

Free Trial

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.

Example Request/Response Pairs

Get a Trading Signal

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"
}

Get Sentiment Analysis

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"
}

Get Macro Regime

curl https://api.signalfuse.co/v1/regime \
  -H "X-Credit-Token: sf_abc123..."
{
  "regime": "risk_on",
  "confidence": 0.78
}

Get Arena Leaderboard

curl https://api.signalfuse.co/v1/arena/leaderboard
[
  {
    "strategy_id": "ema_5_breakout",
    "wins": 142,
    "losses": 98,
    "win_rate": 0.591,
    "total_pnl_bp": 340,
    "total_income_usd": 1720.50
  }
]

Web Search (Brave)

curl "https://api.signalfuse.co/v1/gateway/search/brave?q=bitcoin+ETF+flows" \
  -H "X-Credit-Token: sf_abc123..."

Web Search (Tavily)

curl -X POST https://api.signalfuse.co/v1/gateway/search/tavily \
  -H "Content-Type: application/json" \
  -H "X-Credit-Token: sf_abc123..." \
  -d '{"query": "bitcoin ETF flows", "search_depth": "advanced"}'

Execute Code (E2B Sandbox)

curl -X POST https://api.signalfuse.co/v1/gateway/execute/e2b \
  -H "Content-Type: application/json" \
  -H "X-Credit-Token: sf_abc123..." \
  -d '{"code": "print(2 + 2)", "language": "python"}'
{
  "stdout": "4\n",
  "stderr": "",
  "exit_code": 0
}

Pricing

TierCreditsPricePer-Credit Cost
Free Trial5$0$0
x402 Pay-Per-Callunlimitedmarket ratesee endpoint table
Starter Pack500available at signalfuse.cobulk discount
Pro Pack5,000available at signalfuse.cobulk discount

x402 is an open protocol for HTTP micropayments. SignalFuse accepts USDC on Base. No API keys, no subscriptions -- each request includes a payment header and the server settles on-chain. See the x402 spec for details.

MCP Tools (11 total)

When connected as an MCP server, SignalFuse exposes 11 tools:

Tool NameDescription
get_signalFused directional signal for a crypto asset (direction, strength, confidence, regime, entry/TP/SL)
get_signal_batchSignals for all supported assets in one call
get_sentimentModernFinBERT sentiment analysis (score, label)
get_regimeMacro regime classification (risk_on, risk_off, neutral)
get_arena_leaderboardStrategy Arena rankings with win rate, P&L, income (free)
get_arena_signalSignal from a specific arena strategy for a given asset
search_braveWeb search via Brave Search
search_tavilyAI-powered web search via Tavily
execute_codeSandboxed Python/JavaScript execution via E2B
get_pricingPricing information (free)
check_balanceCredit balance check (free)

Strategy Arena Strategies

Strategy IDDescription
ema_5_breakoutTrend-following on exponential moving average crossovers
rsi_7_extremesMomentum entries at RSI overbought/oversold levels
rsi_reversion_swingMean-reversion fades against RSI extremes
vwap_reversionMean-reversion entries around volume-weighted average price

Agent Framework Integrations

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "signalfuse": {
      "command": "npx",
      "args": ["-y", "signalfuse-mcp"]
    }
  }
}

Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "signalfuse": {
      "command": "npx",
      "args": ["-y", "signalfuse-mcp"]
    }
  }
}

LangChain (Python)

from langchain_signalfuse import SignalFuseTool, SentimentTool, MacroRegimeTool

tools = [
    SignalFuseTool(credit_token="sf_abc123..."),
    SentimentTool(credit_token="sf_abc123..."),
    MacroRegimeTool(credit_token="sf_abc123..."),
]
agent = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION)

See langchain_signalfuse.py in this repository for the full tool set (7 tools).

ElizaOS

import signalfuseActions from "./elizaos_plugin";
// Register actions: getSignalAction, getSentimentAction, getRegimeAction, getSignalBatchAction, getArenaLeaderboardAction

See elizaos_plugin.ts in this repository for the full plugin.

Direct HTTP (any language)

import requests

response = requests.get(
    "https://api.signalfuse.co/v1/signal/BTC",
    headers={"X-Credit-Token": "sf_abc123..."}
)
signal = response.json()
print(signal["signal"], signal["signal_strength"])
const res = await fetch("https://api.signalfuse.co/v1/signal/BTC", {
  headers: { "X-Credit-Token": "sf_abc123..." }
});
const signal = await res.json();
console.log(signal.signal, signal.signal_strength);

Supported Assets

BTC, ETH, SOL, DOGE, PEPE, WIF, BONK, ARB, OP, AVAX -- with more added regularly. Use get_signal_batch with no arguments to retrieve the current full list.

Machine-Readable Discovery

  • OpenAPI spec: https://api.signalfuse.co/openapi.json
  • x402 payment discovery: https://api.signalfuse.co/.well-known/x402
  • llms.txt: https://api.signalfuse.co/llms.txt
  • MCP server identifier: io.github.hypeprinter007-stack/signalfuse
  • npm: npmjs.com/package/signalfuse-mcp
  • PyPI: pypi.org/project/signalfuse
  • Smithery: compatible via smithery.yaml in this repository

Links

  • API: api.signalfuse.co
  • x402 Discovery: api.signalfuse.co/.well-known/x402
  • OpenAPI: api.signalfuse.co/openapi.json
  • llms.txt: api.signalfuse.co/llms.txt
  • Website: signalfuse.co
  • Yield page: signalfuse.co/divigent — live view of where x402 revenue is routed
  • npm: npmjs.com/package/signalfuse-mcp
  • PyPI: pypi.org/project/signalfuse

Related

  • signalfuse-divigent-router — open-source TypeScript sidecar (Apache 2.0) that routes x402 receipts into Divigent yield on Base. Reference seller-side integration.

Disclaimer

SignalFuse is a data fusion API, not financial advice. Signals are mathematical composites derived from sentiment, macro, and market structure data. They can be wrong. Trade at your own risk.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

SIGNALFUSE_CREDIT_TOKENsecret

SignalFuse credit token for API access (get 5 free calls at signalfuse.co)

Categories
Search & Web CrawlingFinance & Commerce
Registryactive
Packagesignalfuse-mcp
TransportSTDIO
AuthRequired
UpdatedMay 24, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3