Plug Claude into the live
Clanker & Base token terminal.
COMPASS MCP exposes 73 tools across 16 categories over the Model Context Protocol — sniper heat, rug score, dev activity, smart-wallet overlap, live Clanker launches, derivatives, macro, plus the COMPASS AI. Wire it up in under five minutes from any MCP client.
Installation
Prerequisites
COMPASS runs as a tiny local stdio proxy that forwards tool calls to
compassterminal.com. You need Python 3.10+ and the proxy script:
# 1. install runtime deps (one-time)
pip install mcp httpx python-dotenv
# 2. download the proxy (drop it anywhere on disk)
curl -fsSL -o compass_mcp.py https://compassterminal.com/install/compass_mcp.py
Note the absolute path of compass_mcp.py — you'll paste it into the config below.
Edit your Claude Desktop config:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"compass": {
"command": "python",
"args": ["/absolute/path/to/compass_mcp.py"],
"env": {
"COMPASS_API_KEY": "cmp_your_key_here",
"COMPASS_BACKEND_URL": "https://compassterminal.com"
}
}
}
}
Fully quit Claude Desktop (right-click tray → Quit, not just close), relaunch, then ask: "list compass tools". You should see 73.
Verify the install
Run the proxy directly in a terminal to confirm everything's wired before pointing a client at it:
COMPASS_API_KEY=cmp_your_key_here \
COMPASS_BACKEND_URL=https://compassterminal.com \
python /absolute/path/to/compass_mcp.py
You'll see a three-phase boot:
- [PHASE 01] CORE BOOT — env, API reach, key check
- [PHASE 02] GLOBAL DATA NETWORK — live latency to 6 regions (Helsinki, Frankfurt, Singapore, Tokyo, New York, São Paulo)
- [PHASE 03] MCP TOOL REGISTRY — lists every one of the 73 tools by name
Final line should read @ COMPASS ONLINE — 73 tools. Hit Ctrl+C to exit, then point your MCP client at it.
SIWE-Issued API Keys
Compass keys (cmp_*) are minted from a Sign-In-With-Ethereum
handshake against your wallet — no email required. Legacy
bst_* email-session keys are still accepted.
Authorization: Bearer cmp_live_xxxxxxxxxxxxxxxxxxxxxxxx
Try It: Morning Briefing
Fastest path to a useful response — fan-out call that pulls positions, hot tokens, on-chain flows, and asks COMPASS AI to summarise the Base desk.
Use compass_full_briefing to give me a 30-second
read on the Base desk this morning.
Claude will call compass_full_briefing, which fans out to compass_quick_scan + compass_get_positions + compass_onchain + compass_news in parallel and asks COMPASS AI to summarise.
Parallel fan-out tools
High-level tools that call several primitives in parallel and stitch the result through COMPASS AI.
compass_full_briefing
TIER 3Morning rundown — positions + quick_scan + onchain + news + COMPASS AI narrative summary.
compass_quick_scan
TIER 3"What's hot right now" — fresh tokens + live Clanker launches + smart-wallet overlap + fear/greed.
compass_token_audit
TIER 3Full DD on a Base token — holders + rug score + dev activity + sniper heat. Pass mint as a Base contract address.
compass_risk_check
TIER 3Pre-trade sanity — positions + volatility regime + onchain + fear/greed.
Clanker & Base Token Tools (11)
Live Base data via Base RPC + indexer. Most need a mint param (Base contract address).
compass_inspect_token
Composite report on a single mint — holders + rug + dev. Paste mint address.
compass_sniper_heat
First 10 buyers classified bot / sniper / insider / organic.
compass_rug_score
Mint authority, freeze authority, LP-lock checks. Returns 0–100 score.
compass_dev_activity
Creator wallet — held / dumped / accumulated since launch.
compass_holders
Top holders + concentration % for a mint.
compass_pump_bonding
Newest Clanker launches (full liquidity at block 0). Limit param = max items.
compass_mint_feed
Live feed of new Base token launches. limit controls window.
compass_smart_wallets
Configured smart-wallet activity. List sourced from SMART_WALLET_LIST env.
compass_smart_overlap
Tokens being bought by 3+ smart wallets within 24h — alpha cluster signal.
compass_solana_health
TPS, priority fee, slot time, congestion status.
compass_onchain
Open interest + position bias + whale activity.
Portfolio & Account (11)
Tools touching account state need a logged-in wallet. Read-only data tools work for any auth'd key.
compass_chat
Free-form chat with COMPASS AI.
compass_get_positions AUTH
All open positions across linked exchanges.
compass_get_balance AUTH
Total balance — exchange + on-chain.
compass_market_data
OHLCV + microstructure for a symbol.
compass_klines
Candle data for a symbol/interval.
compass_alerts AUTH
User-configured alerts.
compass_news
Sentiment-tagged crypto news.
compass_fear_greed
Fear/greed index + label.
compass_volatility
Volatility regime + ATR + recommendations.
compass_macro
DXY, equities, gold.
compass_kelly AUTH
Optimal sizing per Kelly criterion.
Pulled from /api/mcp/tools
Loaded at MCP boot from GET /api/mcp/tools. Names rebranded bastion_* → compass_* for the agent UI; backend still called by original name.
Derivatives (9)
Macro (6)
Strategy (6)
Analytics (5)
Research (4)
Other (13)
Rate Limits
Token-bucket throttle in mcp_server/rate_limit.py. Per-key buckets auto-evict after 10 minutes idle. Exceeding returns 429 with a Retry-After header.
cmp_* keyError Codes
Authorization header. Re-mint the key.mint).Retry-After header.200 + degraded:true instead.Recent Changes
- 2026-05-12Boot banner glow-up — Phase 02 now probes 6 global data regions live (Helsinki, Frankfurt, Singapore, Tokyo, New York, São Paulo) and Phase 03 lists every one of the 73 tools by name on startup.
- 2026-05-12
compass_chatnow falls back gracefully whenCOMPASS_MODEL_URLis unset — routes through the same/api/neural/chatpath the web AI Terminal uses (auto-injects 30+ live data feeds). - 2026-05-12Clanker / Base CA viewer on
/lab— paste a contract address, see a Dexscreener chart in the chart-card slot.window.compassLoadCaChart(mint)exposed for quickbuy integrations. - 2026-05-12Dynamic backend catalog folded into boot —
/api/mcp/toolsauto-registers 47 derivatives / macro / analytics tools on top of the 26 hardcoded compass_* tools (= 73 total). - 2026-05-12Install docs now show the real stdio config —
command + args + env. Previousurlshape returned 404. - 2026-05-08Token-bucket rate limiter shipped. Per-key 60/min, anon 10/min.
- 2026-05-08Wallet SIWE-issued
cmp_*keys now recommended.bst_*still accepted. - 2026-05-07
/api/neural/chatgraceful-degradation wrapper — 200 +degraded:trueinstead of 500. - 2026-05-06Base mint-feed filter relaxed — Clanker launches with dev pre-buys no longer dropped.
- 2026-05-01Lab promoted to canonical
/lab./terminal301-redirects.