Cerebrus Pulse MCP
mcp-name: io.github.0xsl1m/cerebrus-pulse-mcp
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
| 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.025 |
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 | $0.05 |
cerebrus_screener |
Scan all coins for top signals | $0.06 |
cerebrus_oi |
Open interest delta, percentile, trend | $0.015 |
cerebrus_spread |
Bid-ask spread + slippage estimates | $0.015 |
cerebrus_correlation |
BTC-altcoin correlation matrix | $0.05 |
cerebrus_stress |
Cross-chain arbitrage-derived market stress index | $0.02 |
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.
Prices are checked against the API's live x402 manifest
(https://api.cerebruspulse.xyz/.well-known/x402) with
python scripts/check_prices.py --live, which CI runs. The auto-pay payee pin
is checked against a live 402 with python scripts/check_payto.py --live,
which CI and the release workflow run.
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, add a wallet key. The
x402 client ships with the package, so the same uvx command pays; there is no
extra to install:
{
"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.
Use a dedicated hot wallet that holds a few dollars of USDC on Base, never a main wallet: the key sits in plain text in the MCP config.
Auto-payment has spend limits, checked before anything is signed:
- no single payment above
CEREBRUS_MAX_PAYMENT_USD(default0.10; the priciest tool costs $0.06); - no more than
CEREBRUS_MAX_SPEND_USDin total while the server process runs (default1.00; restart the server to reset it). The--jsonCLI starts a new process on every call, so this budget cannot span CLI calls, and the CLI does not auto-pay unless you opt in (see CLI Usage); - only USDC on Base, and only to an address in
CEREBRUS_ALLOWED_PAYTO(default: the published Cerebrus Pulse Base address), so a hijacked or mistypedCEREBRUS_BASE_URLcannot redirect payments.
A refused payment returns "status": "payment_blocked" with the reason; a
malformed limit disables auto-payment rather than lifting the limit.
Without a wallet key, 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 (return the payment terms unless CLI auto-pay is on, below)
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.
The CLI does not auto-pay by default, even with CEREBRUS_WALLET_KEY set.
Every call is a new process with a fresh CEREBRUS_MAX_SPEND_USD budget, so
the budget cannot stop a script that runs the CLI in a loop. Set
CEREBRUS_CLI_AUTOPAY=1 to let it pay anyway: each call may then sign one
payment of up to CEREBRUS_MAX_PAYMENT_USD, and limiting how many calls run
is up to your script.
Configuration
| 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_MAX_PAYMENT_USD |
Largest single payment auto-pay may sign (default: 0.10) |
No |
CEREBRUS_MAX_SPEND_USD |
Total auto-pay may sign per server process (default: 1.00); does not span --json CLI calls |
No |
CEREBRUS_CLI_AUTOPAY |
Set to 1 to let the --json CLI auto-pay (default: off, because the budget resets on every CLI call) |
No |
CEREBRUS_ALLOWED_PAYTO |
Comma-separated payTo addresses auto-pay may pay (default: the published Cerebrus Pulse Base address) | No |
CEREBRUS_WALLET_KEY_SOLANA |
Reserved; Solana auto-payment not yet implemented | No |
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
- Cerebrus Pulse — API documentation and guides
- x402 Protocol — HTTP 402 micropayment standard
- PyPI Package
- Changelog
License
MIT
Release files for cerebrus-pulse-mcp 0.5.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cerebrus_pulse_mcp-0.5.2.tar.gz | 264.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cerebrus_pulse_mcp-0.5.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 279.6 kB
Release files / cerebrus_pulse_mcp-0.5.2.tar.gz
| Download URL | cerebrus_pulse_mcp-0.5.2.tar.gz |
|---|---|
| Size | 264.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9a90a06ccaa46ba75da411fab9a02aaad904001559869ec697505225c425d2f5
|
|
BLAKE2b-256 checksum How to use checksums |
c7246144a656eed882642b0d1841ff355a58e7af535b5413f827ac5b08dd052f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.
Transparency logRelease files / cerebrus_pulse_mcp-0.5.2-py3-none-any.whl
| Download URL | cerebrus_pulse_mcp-0.5.2-py3-none-any.whl |
|---|---|
| Size | 15.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8e49edc12020a35db79c58a2205cd50ee9cac1600ad2c4bf3be15bcef0b7cb52
|
|
BLAKE2b-256 checksum How to use checksums |
809d6cb6d202960f7f4417f6e28d664bab309afce6bfee63027d9f4f85bc8726
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.
Transparency log