Real-time crypto intelligence: technical analysis, sentiment, and funding rates
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cerebrus-pulse": {
"args": [
"cerebrus-pulse-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Cerebrus Pulse — real-time crypto intelligence for AI agents. Provides 15 tools covering technical analysis, liquidation heatmaps, market stress, funding rates, and more across 50+ Hyperliquid perpetuals.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'cerebrus-pulse-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 cerebrus-pulse-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 / analytics
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP server for QuickBooks Online — accounts, customers, invoices, bills, and reports.
Let AI agents create, discover, and track tokens across chains via Printr.
MCP Security Weekly
Get CVE alerts and security updates for io.github.0xsl1m/cerebrus-pulse-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Cerebrus Pulse — real-time crypto intelligence for AI agents. Provides 15 tools covering technical analysis, liquidation heatmaps, market stress, funding rates, and more across 50+ Hyperliquid perpetuals.
| Tool | Description | Cost |
|---|---|---|
cerebrus_health | Gateway health check | Free |
cerebrus_list_coins | List all available tickers (50+) | Free |
cerebrus_pulse | Multi-timeframe technicals (RSI, EMAs, BBands, VWAP, regime) | $0.02 |
cerebrus_sentiment | Aggregated market sentiment + fear/greed | $0.01 |
cerebrus_funding | Funding rate analysis with historical context | $0.01 |
cerebrus_bundle | Pulse + sentiment + funding combined (20% discount) | $0.04 |
cerebrus_screener | Scan all coins for top signals | $0.04 |
cerebrus_oi | Open interest delta, percentile, trend | $0.01 |
cerebrus_spread | Bid-ask spread + slippage estimates | $0.008 |
cerebrus_correlation | BTC-altcoin correlation matrix | $0.03 |
cerebrus_stress | Cross-chain arbitrage-derived market stress index | $0.015 |
cerebrus_cex_dex | CEX vs DEX price divergence | $0.02 |
cerebrus_basis | Chainlink oracle vs Hyperliquid basis | $0.02 |
cerebrus_depeg | USDC collateral health via Chainlink | $0.01 |
cerebrus_liquidations | Liquidation heatmap across 5 leverage tiers | $0.03 |
Paid endpoints use x402 micropayments (USDC on Base or Solana). Free tools work without any configuration.
Add to your MCP config (claude_desktop_config.json, .cursor/mcp.json, etc.):
{
"mcpServers": {
"cerebrus-pulse": {
"command": "uvx",
"args": ["cerebrus-pulse-mcp"]
}
}
}
To enable automatic x402 payments for paid endpoints, add your wallet key:
{
"mcpServers": {
"cerebrus-pulse": {
"command": "uvx",
"args": ["cerebrus-pulse-mcp"],
"env": {
"CEREBRUS_WALLET_KEY": "your-base-wallet-private-key",
"CEREBRUS_WALLET_KEY_SOLANA": "your-solana-wallet-private-key"
}
}
}
}
Set either or both — the x402 SDK picks the chain your wallet is configured for.
pip install cerebrus-pulse-mcp
The server includes a --json flag for direct CLI access without an MCP client:
# List all available CLI tools
cerebrus-pulse-mcp --json
# Free endpoints
cerebrus-pulse-mcp --json health
cerebrus-pulse-mcp --json list-coins
# Paid endpoints (returns payment details if wallet not configured)
cerebrus-pulse-mcp --json pulse BTC
cerebrus-pulse-mcp --json funding ETH lookback_hours=48
cerebrus-pulse-mcp --json screener top_n=10
cerebrus-pulse-mcp --json liquidations SOL
Arguments can be passed positionally (for coin) or as key=value pairs.
| Environment Variable | Description | Required |
|---|---|---|
CEREBRUS_BASE_URL | API base URL (default: https://api.cerebruspulse.xyz) | No |
CEREBRUS_WALLET_KEY | Base wallet private key for x402 auto-payment | No |
CEREBRUS_WALLET_KEY_SOLANA | Solana wallet private key for x402 auto-payment | No |
$ cerebrus-pulse-mcp --json health
{
"status": "ok",
"engine": "available",
"kill_switch": "enabled",
"version": "1.2.0"
}
git clone https://github.com/0xsl1m/cerebrus-pulse-mcp.git
cd cerebrus-pulse-mcp
pip install -e .