Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Bitget Trading

    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.

    2 stars
    TypeScript
    Updated Sep 26, 2025

    Table of Contents

    • ✨ Features
    • 📊 Market Data
    • 💰 Account Management
    • 🎯 Trading Operations
    • ⚡ Technical Features
    • 🛠️ Installation
    • Prerequisites
    • Quick Start
    • 🔧 Configuration
    • Environment Variables
    • Claude Desktop Integration
    • 📚 Available Tools
    • Market Data Tools
    • Account Tools
    • Trading Tools
    • 🎮 Usage Examples
    • Basic Price Check
    • Trading Operations
    • Account Information
    • 🏗️ Development
    • Scripts
    • Project Structure
    • 📋 Symbol Formats
    • Spot Trading
    • Futures Trading
    • 🔒 Security
    • 🐛 Troubleshooting
    • Common Issues
    • 🤝 Contributing
    • 📄 License
    • ⚠️ Disclaimer
    • 🔗 Resources
    • 📞 Support

    Table of Contents

    • ✨ Features
    • 📊 Market Data
    • 💰 Account Management
    • 🎯 Trading Operations
    • ⚡ Technical Features
    • 🛠️ Installation
    • Prerequisites
    • Quick Start
    • 🔧 Configuration
    • Environment Variables
    • Claude Desktop Integration
    • 📚 Available Tools
    • Market Data Tools
    • Account Tools
    • Trading Tools
    • 🎮 Usage Examples
    • Basic Price Check
    • Trading Operations
    • Account Information
    • 🏗️ Development
    • Scripts
    • Project Structure
    • 📋 Symbol Formats
    • Spot Trading
    • Futures Trading
    • 🔒 Security
    • 🐛 Troubleshooting
    • Common Issues
    • 🤝 Contributing
    • 📄 License
    • ⚠️ Disclaimer
    • 🔗 Resources
    • 📞 Support

    Documentation

    🚀 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

    bash
    git clone https://github.com/gagarinyury/MCP-bitget-trading.git
    cd MCP-bitget-trading

    2. Install dependencies

    bash
    npm install

    3. Configure environment

    bash
    cp .env.example .env
    # Edit .env with your Bitget API credentials

    4. Build the project

    bash
    npm run build

    5. Start the server

    bash
    npm start

    🔧 Configuration

    Environment Variables

    Create a .env file in the root directory:

    env
    # 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):

    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

    ToolDescriptionParameters
    getPriceGet current pricesymbol: string
    getTickerGet full ticker infosymbol: string
    getOrderBookGet order booksymbol: string, depth?: number
    getCandlesGet OHLCV datasymbol: string, interval: string, limit?: number

    Account Tools

    ToolDescriptionParameters
    getBalanceGet account balanceasset?: string
    getPositionsGet futures positionssymbol?: string
    getMarginInfoGet margin infosymbol?: string
    getOrdersGet open orderssymbol?: string, status?: string

    Trading Tools

    ToolDescriptionParameters
    placeOrderPlace new ordersymbol, side, type, quantity, price?
    cancelOrderCancel orderorderId: string, symbol: string
    setLeverageSet leveragesymbol: string, leverage: number

    🎮 Usage Examples

    Basic Price Check

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

    Trading Operations

    typescript
    // 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

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

    🏗️ Development

    Scripts

    bash
    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

    code
    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

    • Bitget API Documentation
    • Model Context Protocol
    • Claude Desktop

    📞 Support

    • Issues: GitHub Issues
    • Discussions: GitHub Discussions

    ---

    Made with ❤️ for the crypto trading community

    Similar MCP

    Based on tags & features

    • GL

      Glm Mcp Server

      TypeScript·
      3
    • NS

      Ns Private Access Mcp

      TypeScript·
      3
    • MC

      Mcp Wave

      TypeScript00
    • OP

      Openai Gpt Image Mcp

      TypeScript·
      75

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • GL

      Glm Mcp Server

      TypeScript·
      3
    • NS

      Ns Private Access Mcp

      TypeScript·
      3
    • MC

      Mcp Wave

      TypeScript00
    • OP

      Openai Gpt Image Mcp

      TypeScript·
      75

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k