Provides seamless access to the Binance exchange API. Requires Binance API credentials to be configured.
Multi-language Documentation
A Model Context Protocol (MCP) server that provides Claude Code with Binance exchange API functionality.
Watch our comprehensive MCP usage tutorial to get started quickly:
npm install -g binance-mcp-server
This MCP server can be used with various AI tools that support MCP:
Add the following configuration to your MCP settings file:
{
"mcpServers": {
"binance": {
"command": "npx",
"args": ["binance-mcp-server"],
"env": {
"BINANCE_API_KEY": "your_api_key",
"BINANCE_API_SECRET": "your_api_secret",
"BINANCE_TESTNET": "false"
}
}
}
}
Note: Set
BINANCE_TESTNET
to"true"
if you want to use the Binance testnet for development and testing.
claude mcp add binance --env BINANCE_API_KEY=YOUR_API_KEY --env BINANCE_API_SECRET=YOUR_API_SECRET --env BINANCE_TESTNET=false -- npx -y binance-mcp-server
For Testnet (Recommended for Development):
For Mainnet (Production):
Create .env
file:
BINANCE_API_KEY=your_api_key_here
BINANCE_API_SECRET=your_api_secret_here
BINANCE_TESTNET=true # Set to false for mainnet (REAL money)
get_price
- Get current price for trading pairget_orderbook
- Get order book depth dataget_klines
- Get K-line/candlestick dataget_24hr_ticker
- Get 24-hour price statisticsget_account_info
- Get account information and balancesget_open_orders
- Get current open ordersget_order_history
- Get historical ordersplace_order
- Place a new order (supports both mainnet and testnet)cancel_order
- Cancel specific order (supports both mainnet and testnet)cancel_all_orders
- Cancel all open orders (supports both mainnet and testnet)Ask Claude to:
⚠️ Important:
BINANCE_TESTNET=true
for safe testing with virtual fundsBINANCE_TESTNET=false
or omit for mainnet trading with REAL moneynpm run build # Compile TypeScript
npm run dev # Development mode
npm run lint # Run linting
Interact with the Invertir Online (IOL) API to manage investments and access market data.
Interact with Stripe API
Manage Linode cloud infrastructure resources through natural language conversation.
Query and analyze your Axiom logs, traces, and all other event data in natural language
A Model Context Protocol (MCP) server that provides tools for AI, allowing it to interact with the DataWorks Open API through a standardized interface. This implementation is based on the Aliyun Open API and enables AI agents to perform cloud resources operations seamlessly.
Interact with Honeycomb observability data using the Model Context Protocol.
Generate images using Replicate's Flux 1.1 Pro model.
Core AWS MCP server providing prompt understanding and server management capabilities.
An example project for deploying a remote MCP server on Cloudflare Workers without authentication.
A template for deploying a remote, authentication-free MCP server on Cloudflare Workers.