Bitget MCP Server
OfficialBitget Agent Hub connects AI assistants and automation tools to the Bitget exchange. Two integration modes, plus a built-in Skill Hub for market analysis:
MCP Server — for Claude Code, Cursor, Codex, and any MCP-compatible AI
CLI (
bgc) + Skill — for shell-based AI agents (Claude Code skills, OpenClaw)
Once configured, your AI can check prices, query balances, place and cancel orders, manage futures positions, set leverage, and transfer funds — all through natural language.
Installation
Use bitget-hub to install, upgrade, and manage all Bitget Agent Hub packages. No installation required — run directly via npx.
Quick Start
# Install everything and deploy skills to Claude Code (default)
npx bitget-hub upgrade-all --target claudeThis installs all three packages globally and deploys skills to Claude Code:
Package | What it does |
CLI tool ( | |
Trading skill — AI uses | |
5 market-analysis skills (macro, sentiment, technical, news, on-chain) |
Deploy Skills to AI Tools
Skills can be deployed to Claude Code, Codex, and OpenClaw:
# Deploy to a specific tool
npx bitget-hub install --target codex
# Deploy to multiple tools
npx bitget-hub install --target claude,codex
# Deploy to all supported tools
npx bitget-hub install --target all
# Deploy a single skill package
npx bitget-hub install bitget-skill --target claudeInstall or Upgrade Individual Packages
# Upgrade a single package
npx bitget-hub upgrade bitget-client
# Upgrade and deploy skills
npx bitget-hub upgrade bitget-skill --target claude
# Rollback to a specific version
npx bitget-hub rollback bitget-skill --to 1.0.0Interactive Mode
npx bitget-hubLaunches an interactive menu to upgrade, rollback, or install skills — no flags needed.
Set Credentials
All integrations need a Bitget API key for private endpoints (account, trading). Public market data works without credentials.
Log in to bitget.com → Settings → API Management
Create a new API key — select Read and/or Trade permissions
Set environment variables:
export BITGET_API_KEY="your-api-key"
export BITGET_SECRET_KEY="your-secret-key"
export BITGET_PASSPHRASE="your-passphrase"MCP Server
Gives AI assistants direct access to Bitget tools via the Model Context Protocol. No global install needed — runs via npx.
Claude Code
claude mcp add -s user \
--env BITGET_API_KEY=your-api-key \
--env BITGET_SECRET_KEY=your-secret-key \
--env BITGET_PASSPHRASE=your-passphrase \
bitget \
-- npx -y bitget-mcp-serverCodex
Add to ~/.codex/config.toml:
[[mcp_servers]]
name = "bitget"
command = "npx"
args = ["-y", "bitget-mcp-server"]
[mcp_servers.env]
BITGET_API_KEY = "your-api-key"
BITGET_SECRET_KEY = "your-secret-key"
BITGET_PASSPHRASE = "your-passphrase"OpenClaw
Add to your OpenClaw agent config:
{
"mcp_servers": {
"bitget": {
"command": "npx",
"args": ["-y", "bitget-mcp-server"],
"env": {
"BITGET_API_KEY": "your-api-key",
"BITGET_SECRET_KEY": "your-secret-key",
"BITGET_PASSPHRASE": "your-passphrase"
}
}
}
}→ See docs/packages/bitget-mcp.md for more clients (Claude Desktop, Cursor, VS Code Copilot, Windsurf).
CLI Tool (bgc)
A command-line interface for all Bitget tools. Outputs JSON — ideal for scripting and AI agent shell use.
# Market data (no credentials needed)
bgc spot spot_get_ticker --symbol BTCUSDT
# Account queries
bgc account get_account_assets
# Trading
bgc spot spot_place_order --orders '[{"symbol":"BTCUSDT","side":"buy","orderType":"limit","price":"95000","size":"0.01"}]'Skill Hub
5 market-analysis skills for Claude Code, Codex, and OpenClaw. Each skill instructs the AI how to use the market-data MCP server to deliver analyst-grade outputs.
Skill | What it does |
Macro & cross-asset analysis — Fed policy, yield curve, BTC vs DXY/Nasdaq/Gold | |
On-chain & institutional intelligence — ETF flows, whale activity, DeFi TVL | |
News aggregation & narrative synthesis — morning briefings, keyword search | |
Sentiment & positioning — Fear & Greed, long/short ratios, funding rates | |
Technical analysis — 23 indicators across 6 categories |
The technical-analysis skill requires Python: pip install pandas numpy
→ See docs/skill-hub.md for full documentation.
Modules
Module | Tools | Loaded by default |
| 13 | ✅ |
| 14 | ✅ |
| 8 | ✅ |
| 7 | — |
| 5 | — |
| 3 | — |
| 3 | — |
| 2 | — |
| 3 | — |
Default: spot + futures + account = 36 tools (fits within Cursor's 40-tool limit).
Load everything: --modules all
Security
Credentials via environment variables only — never hardcoded or logged
--read-onlyflag disables all write operations at server levelAll authenticated requests signed with HMAC-SHA256
Client-side rate limiting prevents accidental API abuse
Write operations (orders, transfers) require explicit confirmation before execution
Development
# Prerequisites: Node.js ≥ 18, pnpm ≥ 8
pnpm install
pnpm -r build
pnpm -r testLicense
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/BitgetLimited/agent_hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server