Back to Browse

Cerebrus Pulse MCP Server

by 0xsl1m
Developer ToolsModerate7.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Real-time crypto intelligence: technical analysis, sentiment, and funding rates

About

Real-time crypto intelligence: technical analysis, sentiment, and funding rates

Security Report

7.0
Moderate7.0Low Risk

Valid MCP server (2 strong, 1 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.

5 files analyzed · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-0xsl1m-cerebrus-pulse-mcp": {
      "args": [
        "cerebrus-pulse-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Cerebrus Pulse MCP

mcp-name: io.github.0xsl1m/cerebrus-pulse-mcp

PyPI License: MIT Python 3.10+

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.

Tools

ToolDescriptionCost
cerebrus_healthGateway health checkFree
cerebrus_list_coinsList all available tickers (50+)Free
cerebrus_pulseMulti-timeframe technicals (RSI, EMAs, BBands, VWAP, regime)$0.02
cerebrus_sentimentAggregated market sentiment + fear/greed$0.01
cerebrus_fundingFunding rate analysis with historical context$0.01
cerebrus_bundlePulse + sentiment + funding combined (20% discount)$0.04
cerebrus_screenerScan all coins for top signals$0.04
cerebrus_oiOpen interest delta, percentile, trend$0.01
cerebrus_spreadBid-ask spread + slippage estimates$0.008
cerebrus_correlationBTC-altcoin correlation matrix$0.03
cerebrus_stressCross-chain arbitrage-derived market stress index$0.015
cerebrus_cex_dexCEX vs DEX price divergence$0.02
cerebrus_basisChainlink oracle vs Hyperliquid basis$0.02
cerebrus_depegUSDC collateral health via Chainlink$0.01
cerebrus_liquidationsLiquidation heatmap across 5 leverage tiers$0.03

Paid endpoints use x402 micropayments (USDC on Base or Solana). Free tools work without any configuration.

Install

Claude Desktop / Cursor / Windsurf

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, install the payment extra and add your wallet key:

pip install "cerebrus-pulse-mcp[pay]"

Then:

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

Automatic payment currently covers Base only. CEREBRUS_WALLET_KEY_SOLANA is reserved for a future Solana signer — the API accepts Solana today, but you would need to settle those payments yourself.

Without a wallet key (or without the [pay] extra) paid tools still work as discovery: they return the exact price, network, and recipient so the calling agent can pay however it likes.

pip

pip install cerebrus-pulse-mcp

CLI Usage

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.

Configuration

Environment VariableDescriptionRequired
CEREBRUS_BASE_URLAPI base URL (default: https://api.cerebruspulse.xyz)No
CEREBRUS_WALLET_KEYBase wallet private key for x402 auto-payment (requires the [pay] extra)No
CEREBRUS_WALLET_KEY_SOLANAReserved; Solana auto-payment not yet implementedNo

Example Response

$ cerebrus-pulse-mcp --json health
{
  "status": "ok",
  "engine": "available",
  "kill_switch": "enabled",
  "version": "1.2.0"
}

Development

git clone https://github.com/0xsl1m/cerebrus-pulse-mcp.git
cd cerebrus-pulse-mcp
pip install -e .

Links

License

MIT

Reviews

No reviews yet

Be the first to review this server!