MCP Binance
Enables users to fetch real-time cryptocurrency market data from Binance including OHLCV prices, mark prices, funding rates, and open interest for both spot and futures markets. Provides easy access to Binance trading data through a simple JSON-RPC interface.
README
MCP Binance (TypeScript)
A minimal Model Context Protocol (MCP) server exposing tools to fetch Binance data. Tools:
get_ohlcv(spot/futures)get_mark_priceget_funding_rate(futures)get_open_interest(futures, simple endpoint)
Quick start (VPS)
# 1) Install Node 20+, then:
npm i
cp .env.example .env
# edit .env (PORT, AUTH_TOKEN, TRANSPORT)
# 2) Dev run (HTTP transport by default):
npm run dev
# 3) Build & run
npm run build && npm start
HTTP JSON-RPC endpoint
- POST
http://<host>:<port>/rpc - Headers:
Content-Type: application/json,Authorization: Bearer <AUTH_TOKEN>(if set) - Body:
{"jsonrpc":"2.0","id":1,"method":"tools/list"}{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_ohlcv","arguments":{...}}}
Register in ChatGPT (custom connector)
- Add a new MCP connector and point it to your HTTP endpoint (or run with TRANSPORT=stdio for local/desktop hosts).
- The model will call
tools/listto discover the schema, thentools/callwith arguments.
Deployment Options (No Domain Required)
🚀 Option 1: Direct IP Access (Simplest)
# Run without reverse proxy
PORT=8080 AUTH_TOKEN=your-secret npm start
# Access via: http://YOUR_SERVER_IP:8080
# Test: curl http://YOUR_SERVER_IP:8080/healthz
🌐 Option 2: Tunnel Services (Recommended)
Get instant HTTPS domain without buying one:
Ngrok (Free tier available)
# Install ngrok, then:
./deploy/start-with-ngrok.sh
# Gets you: https://random-name.ngrok.io
Cloudflare Tunnel (Free & reliable)
# Install cloudflared, then:
cloudflared tunnel login
cloudflared tunnel create mcp-binance
# Edit deploy/cloudflare-tunnel.yml with your tunnel ID
cloudflared tunnel --config deploy/cloudflare-tunnel.yml run
🆓 Option 3: Free Domain Services
Get a real domain for free:
DuckDNS (Recommended)
- Register at duckdns.org → Get
yourname.duckdns.org - Point domain to your server IP
- Run setup script:
sudo ./deploy/setup-free-domain.sh - Includes free SSL certificate via Let's Encrypt
Other free options:
- No-IP: yourname.ddns.net (dynamic DNS)
- FreeDNS: Various TLD options
- EU.org: Free EU domain (longer approval)
📊 Comparison Table
| Method | Cost | SSL | Stable | Setup |
|---|---|---|---|---|
| Direct IP | Free | ❌ | ✅ | 1 min |
| Ngrok | Free* | ✅ | ⚠️ | 2 min |
| Cloudflare | Free | ✅ | ✅ | 5 min |
| DuckDNS | Free | ✅ | ✅ | 10 min |
*Free tier has limitations
🛠️ Configuration Files
Different deployment scenarios:
deploy/nginx-http-only.conf- Direct IP or behind load balancerdeploy/nginx-free-domain.conf- Free domains with SSLdeploy/ngrok.yml- Ngrok tunnel configurationdeploy/cloudflare-tunnel.yml- Cloudflare tunnel setup
🧪 Local Domain Testing
Test your registered domain locally before deploying to a server:
🚀 One-Click Setup (Recommended)
# Interactive setup with menu
./deploy/setup-local-test.sh
# Choose:
# 1) HTTP mode (quick setup)
# 2) HTTPS mode (full experience with self-signed cert)
📋 Manual Setup
HTTP Testing
# 1. Add to hosts file
echo "127.0.0.1 shukehi.duckdns.org" | sudo tee -a /etc/hosts
# 2. Configure Nginx
sudo cp deploy/nginx-local-test.conf /etc/nginx/sites-available/
sudo ln -s /etc/nginx/sites-available/nginx-local-test.conf /etc/nginx/sites-enabled/
sudo nginx -t && sudo systemctl reload nginx
# 3. Start MCP server
npm run build && npm start
# 4. Test
curl http://shukehi.duckdns.org/healthz
curl http://shukehi.duckdns.org/tools
HTTPS Testing (Self-Signed Certificate)
# 1. Generate SSL certificate
./deploy/generate-local-ssl.sh
# 2. Install certificate
sudo ./ssl/install-commands.sh
# 3. Configure HTTPS Nginx
sudo cp deploy/nginx-local-https.conf /etc/nginx/sites-available/
sudo ln -s /etc/nginx/sites-available/nginx-local-https.conf /etc/nginx/sites-enabled/
sudo nginx -t && sudo systemctl reload nginx
# 4. Test HTTPS (accept security warning)
curl -k https://shukehi.duckdns.org/healthz
🧹 Cleanup
# Remove test setup
./deploy/setup-local-test.sh --cleanup
✅ Benefits of Local Testing
- Validate domain configuration before server deployment
- Test MCP client connections with real domain names
- Debug SSL/TLS issues in controlled environment
- Verify authentication flows with realistic URLs
- Perfect for development and integration testing
Security
- Set
AUTH_TOKENin.envand configure your reverse proxy (Nginx) with TLS. - Keep any exchange API keys read-only and in environment variables.
Traditional Deployment (With Domain)
Systemd unit (example)
See deploy/mcp-binance.service
Nginx reverse proxy (example)
See deploy/nginx.conf
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.