drio
Open app

Binance Market Data MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Binance Market Data MCP Server is an implementation designed to access Binance market data using a WebSocket connection, providing real-time financial data.

To use the MCP Server, clone the repository, install the required dependencies using npm, and build the project to start accessing market data through WebSocket and REST API.

  • Real-time market data access via WebSocket - REST API for both spot and futures markets - Support for a variety of data types including prices, volumes, and order books - Futures-specific data like funding rates and open interest - Automatic WebSocket reconnection for uninterrupted data streams - Implements rate limiting and error handling for smooth operation
  1. Tracking real-time cryptocurrency prices and trading volumes.
  2. Analyzing order book data for strategic trading decisions.
  3. Monitoring futures market data including funding rates and open interest.

Add to your AI client

Use these steps to connect Binance Market Data MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-binance-qeinfinity": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-binance-qeinfinity": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-binance-qeinfinity": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-binance-qeinfinity": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-binance-qeinfinity": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-binance-qeinfinity": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-binance-qeinfinity"
      ]
    }
  }
}

FAQ

What type of data can I access through this server?

You can access market prices, volume, order book data, trade information, and futures-specific data such as funding rates and open interest.

How can I install it?

Clone the repository, run npm install to install dependencies, and run npm run build to set up the server.

Is WebSocket support available?

Yes, the server provides real-time market data via a WebSocket connection.