Skip to main content
Glama

MCP Bitget Trading Server

by gagarinyury

๐Ÿš€ MCP Bitget Trading Server

MCP TypeScript Bitget API License

MCP (Model Context Protocol) server for Bitget cryptocurrency exchange. Enables AI assistants to interact with Bitget API for spot & futures trading. Features real-time market data, order management, account balances, leverage control, and position tracking. Supports demo trading with paper trading mode.

โœจ Features

๐Ÿ“Š Market Data

  • Real-time Prices - Get current market prices for any trading pair

  • Full Tickers - Complete ticker information with 24h statistics

  • Order Book - Market depth data with configurable depth levels

  • Historical Candles - OHLCV data for technical analysis

๐Ÿ’ฐ Account Management

  • Balance Information - Real-time account balances for all assets

  • Position Tracking - Monitor current futures positions

  • Margin Information - Futures margin account details

  • Order Management - View and manage open orders

๐ŸŽฏ Trading Operations

  • Place Orders - Execute market and limit orders

  • Cancel Orders - Cancel existing orders by ID

  • Leverage Control - Set leverage for futures positions (1-125x)

  • Demo Trading - Full support for paper trading mode

โšก Technical Features

  • TypeScript - Fully typed implementation

  • v2 API Support - Latest Bitget API integration

  • Rate Limiting - Built-in protection against API limits

  • Error Handling - Comprehensive error management

  • Zod Validation - Input validation for all parameters

๐Ÿ› ๏ธ Installation

Prerequisites

  • Node.js 18+

  • npm or yarn

  • Bitget API credentials (for live/demo trading)

Quick Start

  1. Clone the repository

git clone https://github.com/gagarinyury/MCP-bitget-trading.git cd MCP-bitget-trading
  1. Install dependencies

npm install
  1. Configure environment

cp .env.example .env # Edit .env with your Bitget API credentials
  1. Build the project

npm run build
  1. Start the server

npm start

๐Ÿ”ง Configuration

Environment Variables

Create a .env file in the root directory:

# Bitget API Configuration BITGET_API_KEY=your_api_key_here BITGET_SECRET_KEY=your_secret_key_here BITGET_PASSPHRASE=your_passphrase_here # Environment settings BITGET_SANDBOX=true # Set to true for demo trading BITGET_BASE_URL=https://api.bitget.com BITGET_WS_URL=wss://wspap.bitget.com/v2/ws/public # Optional settings LOG_LEVEL=info RATE_LIMIT_REQUESTS_PER_SECOND=10

Claude Desktop Integration

Add to your Claude Desktop MCP settings (~/Library/Application Support/Claude/claude_desktop_config.json):

{ "mcpServers": { "bitget-trading": { "command": "node", "args": ["/path/to/MCP-bitget-trading/dist/server.js"], "env": { "BITGET_API_KEY": "your_key", "BITGET_SECRET_KEY": "your_secret", "BITGET_PASSPHRASE": "your_passphrase", "BITGET_SANDBOX": "true" } } } }

๐Ÿ“š Available Tools

Market Data Tools

Tool

Description

Parameters

getPrice

Get current price

symbol: string

getTicker

Get full ticker info

symbol: string

getOrderBook

Get order book

symbol: string, depth?: number

getCandles

Get OHLCV data

symbol: string, interval: string, limit?: number

Account Tools

Tool

Description

Parameters

getBalance

Get account balance

asset?: string

getPositions

Get futures positions

symbol?: string

getMarginInfo

Get margin info

symbol?: string

getOrders

Get open orders

symbol?: string, status?: string

Trading Tools

Tool

Description

Parameters

placeOrder

Place new order

symbol, side, type, quantity, price?

cancelOrder

Cancel order

orderId: string, symbol: string

setLeverage

Set leverage

symbol: string, leverage: number

๐ŸŽฎ Usage Examples

Basic Price Check

// Get current Bitcoin price await getPrice({ symbol: "BTCUSDT" }) // Get futures price await getPrice({ symbol: "BTCUSDT_UMCBL" })

Trading Operations

// Place a limit buy order await placeOrder({ symbol: "BTCUSDT", side: "buy", type: "limit", quantity: "0.001", price: "50000" }) // Set leverage for futures await setLeverage({ symbol: "BTCUSDT_UMCBL", leverage: 10 })

Account Information

// Check balance await getBalance({ asset: "USDT" }) // Get all positions await getPositions({})

๐Ÿ—๏ธ Development

Scripts

npm run dev # Development with hot reload npm run build # Production build npm run test # Run tests npm run lint # Lint code npm run format # Format code

Project Structure

src/ โ”œโ”€โ”€ api/ โ”‚ โ””โ”€โ”€ rest-client.ts # Bitget REST API client โ”œโ”€โ”€ types/ โ”‚ โ”œโ”€โ”€ bitget.ts # Bitget API types โ”‚ โ””โ”€โ”€ mcp.ts # MCP schema definitions โ””โ”€โ”€ server.ts # Main MCP server

๐Ÿ“‹ Symbol Formats

Spot Trading

  • Format: BTCUSDT, ETHUSDT, ADAUSDT

  • No suffix required

Futures Trading

  • Format: BTCUSDT_UMCBL, ETHUSDT_UMCBL

  • _UMCBL suffix for USDT-margined contracts

๐Ÿ”’ Security

  • API Keys: Store in environment variables, never commit to code

  • Demo Mode: Use BITGET_SANDBOX=true for paper trading

  • Rate Limiting: Built-in protection (10 requests/second default)

  • Validation: All inputs validated with Zod schemas

๐Ÿ› Troubleshooting

Common Issues

  1. Error 40009 - Sign signature error

    • Check API key configuration

    • Ensure timestamp is synchronized

  2. Error 40099 - Exchange environment incorrect

    • Verify demo/live mode settings

    • Check paptrading header for demo mode

  3. Error 400172 - Parameter verification failed

    • Check required parameters

    • Verify symbol format

๐Ÿค Contributing

  1. Fork the repository

  2. Create feature branch (git checkout -b feature/amazing-feature)

  3. Commit changes (git commit -m 'Add amazing feature')

  4. Push to branch (git push origin feature/amazing-feature)

  5. Open Pull Request

๐Ÿ“„ License

MIT License - see LICENSE file for details

โš ๏ธ Disclaimer

This software is for educational and development purposes. Use at your own risk. Always test in demo mode before live trading. The authors are not responsible for any financial losses.

๐Ÿ”— Resources

๐Ÿ“ž Support


Made with โค๏ธ for the crypto trading community

Related MCP Servers

  • A
    security
    A
    license
    A
    quality
    Interact with Upbit cryptocurrency exchange services to retrieve market data, manage accounts, and execute trades. Simplify your trading experience with tools for order management, deposits, withdrawals, and technical analysis.
    Last updated -
    10
    13
    MIT License
    • Apple
  • A
    security
    F
    license
    A
    quality
    Transforms AI assistants into autonomous crypto trading agents with real-time market analysis, portfolio management, and trade execution across 17+ blockchains.
    Last updated -
    32
    42
    15
  • A
    security
    F
    license
    A
    quality
    Enables cryptocurrency trading on Bybit exchange through comprehensive market data access, account management, and automated trading operations. Features smart position validation, trailing stop losses, and risk management tools with demo mode support for safe testing.
    Last updated -
    21
  • A
    security
    F
    license
    A
    quality
    Enables AI assistants to interact with IG Trading API for forex, indices, and commodities trading. Provides 21 tools for account management, position trading, order placement, market data analysis, and watchlist management.
    Last updated -
    21
    11
    1

View all related MCP servers

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/gagarinyury/MCP-bitget-trading'

If you have feedback or need assistance with the MCP directory API, please join our Discord server