Crypto Multi-MCP Hub
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Crypto Multi-MCP HubWhat's the current Bitcoin price and sentiment?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π¨βπ» Developer & Company
Related MCP server: coin-mcp
β¨ Features & Capabilities
π¨ Visual & Technical Upgrades (v3.0)
π§οΈ Matrix Digital Rain: Ambient, immersive cyberpunk background animations.
πΎ Cyberpunk Glitch Text: Immersive text glitching effects across core UI headers.
π§ Interactive 3D Card Tilt: Hover over dashboard elements to see them dynamically tilt in 3D space.
π¦ Holographic Sweeps: Primary buttons feature an animated light-sweep effect to represent active scanning.
β¨οΈ Typewriter AI Reasoning: AI logic is animated character-by-character for a more authentic 'terminal' feel.
π‘οΈ Performance & Security: Includes memoized 3D components, SSRF protection on endpoints, error-fallback for ERC20 contracts, and
hmac.compare_digestfor timing-safe equality in backend services.
Our terminal is a living, breathing Hedge Fund AI Orchestrator, packed with cutting-edge tools.
π€ Autonomous Orchestrator Mode (Agentic Loop)
Evolving from a passive Multi-MCP tool, the server acts as an autonomous 24/7 trading agent framework running a continuous Observe-Analyze-Act (OODA) loop.
ποΈ Observe (
gather_market_data): Queries multiple MCPs (e.g., Technical indicators, News sentiment, On-chain data).π§ Analyze (
analyze_with_llm): Evaluates signals using an LLM (Gemini, Claude, or OpenAI) for a structured decision (BUY, SELL, HOLD).β‘ Act (
execute_trade): Executes trades via the local CCXT MCP.π§ͺ Agentic Backtesting: Safely test AI prompts and models against historical OHLCV data without risking real funds.
π Proof of Brain (Trading Diary): Comprehensive markdown reports detailing the "Board of Directors" reasoning for every action taken.
π± Telegram Command Center
Receive real-time alerts and command your trading agent via Telegram.
/status: View active AI providers and last decisions./report: Receive your latest "Proof of Brain" report./analyze: Trigger a manual OODA cycle.
π 100% Real Data Integration & Visualizer Dynamics
The Crypto MCP Server uses real data across all visualizers. The entire system operates without a single mockup!
π― Dark Pool Sonar: Real-time 3D sonar pings for large volume "whale" trades on central exchanges using
@react-three/fiber.π₯ Flash-Crash Prediction Matrix: Glowing heatmap grid of bids to asks, tracking liquidity drains.
π Galaxy View (Gravity Well): 3D mapping of the top 50 cryptocurrencies.
π§ AI Sentiment Word-Cloud Sphere: Extracts trending keywords and sentiment from real-time news to form an interactive 3D floating sphere.
β‘ Gas & Network Congestion Hologram: Visualizes Ethereum network congestion as a glowing, pulsating reactor core.
π The Multi-MCP Ecosystem
This repository comes bundled with over a dozen powerful MCPs (Model Context Protocol). They provide execution, raw data, analysis, and external system integrations.
MCP Server | Description | Port |
π± | The core exchange trading & market data integration via CCXT. |
|
βοΈ | ETH balances, ERC20 balances, transaction info, and live Gas Prices. |
|
π | Compute Technical Indicators (RSI, MACD, SMA50, BB) and Monte Carlo Simulations. |
|
πΌ | Aggregated portfolio balances and performance tracking. |
|
π¦ | Deep market stats, top coins, and historical trends. |
|
π§ | Local/Remote LLM operations and Copilot interactions. |
|
π | System notifications, alerts, and Telegram broadcasting. |
|
π | Interfaces with local Freqtrade instances via REST APIs. |
|
π | Interfaces with local OctoBot instances via REST APIs. |
|
π¦ | Controls local Hummingbot Gateway APIs. |
|
π€ | Interacts with the Superalgos platform API. |
|
π° | Fetches the latest crypto news from CryptoPanic. |
|
πΊοΈ System Overview & Architecture
Explore the architecture, installation success, and security models below:
β Quick Start β Automated
Place the provided install.sh into $HOME/install.sh (or $HOME/cryptomcpserver/install.sh if you prefer). Make it executable and run it:
# Save install.sh to $HOME/install.sh, then:
cd $HOME
chmod +x install.sh
./install.shWhat install.sh does (summary):
Creates directories and writes backend & frontend files.
Installs Node.js if missing and runs
npm installfor backend & frontend.Ensures the
orderstable exists in$HOME/cryptomcpserver/gui/backend/orders.db.Frees port
4000if occupied, then installs & enables the systemd servicecrypto-mcp-gui.service.Attempts a production build of the frontend.
After running, check service status and logs:
sudo systemctl status crypto-mcp-gui.service
sudo journalctl -u crypto-mcp-gui.service -fπ Manual Install
If you prefer a hands-on approach:
1. Install system deps & Python Requirements:
sudo apt update
sudo apt install -y curl build-essential ca-certificates git python3-pip
pip3 install -r requirements.txt2. Install Node.js (if needed):
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install -y nodejs3. Backend & Global Config:
cd $HOME/cryptomcpserver
cp .env.example .env
# Edit .env to add your passwords, keys, and allowed pairs
cd gui/backend
npm install4. Frontend (Dev):
cd $HOME/cryptomcpserver/gui/frontend
npm install
npm run dev -- --host # Open http://<PI_IP>:5173 on your laptop5. Systemd (Backend):
# Create /etc/systemd/system/crypto-mcp-gui.service
sudo systemctl daemon-reload
sudo systemctl enable --now crypto-mcp-gui.serviceβοΈ Configuration
The system uses a centralized .env file located at the root of the project to manage both Python MCP servers and the Node.js backend.
Copy and edit $HOME/cryptomcpserver/.env.example β .env:
# Essential configuration
PORT=4000
DASHBOARD_PASSWORD=your_secure_password # Required for trading and AI reasoning
ALLOWED_PAIRS=BTC/USDT,SOL/USDT # Fail-closed security: only these pairs are allowed
MAX_TRADE_USD=100.0 # Maximum allowed trade amount per transaction
# API Keys
BINANCE_API_KEY=your_key
BINANCE_API_SECRET=your_secret
# --- Autonomous Orchestrator Settings ---
ACTIVE_LLM_PROVIDER="gemini"
GEMINI_API_KEY="your_google_gemini_key_here"
TELEGRAM_BOT_TOKEN="your_token_here"
TELEGRAM_CHAT_ID="your_chat_id_here"π Claude Desktop Integration
Add MCP servers in Claude Desktop (Step-by-step)
Open the Claude Desktop app.
Navigate to App Settings / Preferences.
Find Local MCP Servers.
Click
+(Add) and fill in the fields:Name:
ccxtDescription:
CCXT MCP β exchange trading & market dataTransport:
httpEndpoint:
http://127.0.0.1:7001/mcp(if Claude runs on Pi) orhttp://<pi-ip>:7001/mcp(if Claude runs on laptop)
Save. Repeat for other MCPs (
coingecko,portfolio,onchain,ta,news, etc.) using their respective ports.
π₯ Dashboard User Manual
π Portfolio: View aggregated balances & USD value.
π Ticker: Live market data (via
ccxtMCP).π Order / Trade:
Preview (
dry_run): Calculates estimated cost and logs a preview.Confirm β Place order: Sends
create_orderto CCXT MCP.
π Orders Log: Real-time updates via Socket.io, paginated with indices.
π€ AI Copilot: Voice-activated command center powered by local LLMs.
β οΈ Safety Warning: Always test with testnet keys. The UI requires confirmation to execute live orders.
π Security & Best Practices
π§ͺ Testnet First: Use testnet keys while testing your strategies.
π Environment Variables: Keep API keys absolutely out of the repository.
π‘οΈ Network Isolation: Restrict access to MCP endpoints to your local LAN only.
π Authentication: Endpoints are fully secured with
DASHBOARD_PASSWORDverification and robust anti-SSRF checks.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceThe conviction engine for autonomous crypto trading agents. 376 metrics across 8 factor classes, multi-factor backtesting, signal persistence, and regime analysis β 21 tools for AI agents via MCP.Last updated2171MIT
- AlicenseAqualityDmaintenanceA comprehensive cryptocurrency market-data MCP server with 49 tools across six data sources, enabling LLMs to answer market questions via natural language.Last updated49MIT
- Alicense-qualityDmaintenanceEnables AI-powered cryptocurrency trading and analytics across multiple exchanges and blockchains, with integrated Telegram bot and live trading capabilities.Last updated3MIT
- Flicense-qualityBmaintenanceEnables MCP-compatible AI clients to access live crypto market data and AI-driven quantitative analysis, with structured outputs and full observability.Last updated
Related MCP Connectors
AI agent access to Asian crypto markets. Korean exchange routing and x402 paid APIs.
No-KYC managed MCP for AI agents: sandboxed TypeScript trading SDK, isolated sub-accounts, futures.
Agent-native crypto market-data over MCP+REST: order flow, whales, liquidations, calibrated scores
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PelleNybe/Crypto-MCP-Server---by-Corax-CoLAB'
If you have feedback or need assistance with the MCP directory API, please join our Discord server