MCP Connector

Access OKX Blockchain Data and Execute Trades

An MCP server giving Claude OKX blockchain balances, prices, and DEX swap operations across chains.

Works with okx

Maintainer of this project? Claim this page to edit the listing.


90
Spark score
out of 100
Updated Jul 2025
Version 1.0.0
Models

Add to Favorites

Why it matters

Integrate with OKX's API to programmatically access blockchain data, manage assets, and execute trading operations. This MCP server enables AI agents to interact with market prices, transaction history, and perform trades.

Outcomes

What it gets done

01

Retrieve token balances and total account value.

02

Broadcast and simulate blockchain transactions.

03

Fetch real-time and historical market data, including candlestick charts.

04

Execute trading operations such as DEX swaps.

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-okx-mcp-server | bash

Capabilities

Tools your agent gets

get_supported_chain

Get information about networks supported by various endpoints

get_specific_token_balance

Get token balances for an address across multiple or specified networks

get_total_token_balances

Get total token balances for an address across multiple or specified networks

get_total_value

Get the total balance of all tokens and DeFi assets in an account

broadcast_transactions

Broadcast transactions to the specified blockchain

get_gas_limit

Get gas limit consumption estimate through pre-execution of transaction information

get_gas_price

Dynamically retrieve estimated gas prices for various networks

get_transaction_orders

Get a list of orders sent from the transaction broadcast API

+7 tools

Overview

OKX-MCP-Server MCP Server

An MCP server exposing OKX blockchain balances, prices, and DEX swap operations to Claude across multiple chains. Use it when Claude needs onchain balance or price data, or to prepare and execute a DEX swap or cross-chain transaction.

What it does

Gives Claude access to blockchain and market data through the OKX API, covering wallet balances, DEX gateway operations, index and market prices, cross-chain swaps, and transaction history across multiple chains.

When to use - and when NOT to

Use this when Claude needs onchain balance lookups, token price or candlestick data, or to prepare, simulate, and execute DEX swaps and cross-chain transactions - for example checking a wallet's total DeFi value, getting a swap quote, or looking up a transaction by hash. It requires an OKX API key, secret, passphrase, and project ID, and it can execute real onchain operations (approve_transactions, execute_swap, broadcast_transactions), so it is not a read-only sandbox unless you avoid those specific tools.

Capabilities

  • Balance Operations: get_supported_chain, get_specific_token_balance, get_total_token_balances, get_total_value.
  • Gateway Operations: get_supported_chain, broadcast_transactions, get_gas_limit, get_gas_price, get_transaction_orders, simulate_transactions.
  • Index Price Operation: get_supported_chain, get_historical_index_price, get_token_index_price (a price calculated from multiple third-party sources).
  • Market Price Operation: get_supported_chain, get_trades, get_batch_token_price, get_candlesticks_history, get_candlesticks, get_price.
  • Trade Operation: get_supported_chains (also returns supported target chains for cross-chain transactions), approve_transactions (per the ERC-20 standard, generates the data needed to give the OKX router permission to spend funds from the user's wallet before a swap), execute_swap (generates the data to call the OKX DEX router), get_liquidity_sources (available liquidity for a swap in the OKX aggregation protocol), get_quotes (best swap quote through OKX DEX), get_swap_instructions (transaction instruction data for redemption or custom assembly on Solana), get_tokens (tokens from major platforms or deemed significant by OKX - you can still quote and swap tokens outside this list), and get_transaction_status (final status of a single-chain swap by txhash).
  • Transaction Operation: get_supported_chain, get_history_by_address (transaction history by address, newest first), get_specific_transaction (details of a transaction by txHash).

How to install

Requires Node.js v16+, an OKX API key (from web3.okx.com), and Claude Desktop. Clone the repo, run npm install, then npm run build (or npm run build:smithery). Configure claude_desktop_config.json:

{
  "mcpServers": {
    "okx-mcp-playground": {
      "command": "node",
      "args": ["your project path/dist/index.js"],
      "env": {
        "OKX_API_KEY": "your-okx-api-key",
        "OKX_API_SECRET": "your-okx-api-secret",
        "OKX_PASSPHRASE": "your-okx-api-passphrase",
        "OKX_PROJECT_ID": "your-okx-project-id"
      }
    }
  }
}

It can also be run directly with node dist/index.js. The Claude Desktop configuration file location differs by OS: macOS uses ~/Library/Application Support/Claude/claude_desktop_config.json, Windows uses %APPDATA%\Claude\claude_desktop_config.json, and Linux uses ~/.config/Claude/claude_desktop_config.json. The same four credentials can also be set as plain environment variables (OKX_API_KEY, OKX_API_SECRET, OKX_PASSPHRASE, OKX_PROJECT_ID) instead of inline in the config file. The project is MIT licensed.

Who it's for

Web3 developers and traders who want Claude to look up onchain balances and prices, or prepare and execute DEX swaps and cross-chain transactions, without switching to a separate OKX dashboard or writing custom API integration code.

Source README

OKX MCP Playground

This repository contains a Model Context Protocol (MCP) server that provides Claude with access to various blockchain data and market price data via the OKX API. The server enables Claude to perform operations like retrieve assets prices, transaction data, account history data and trade instruction data.

Overview

The MCP server exposes the following tools to Claude:

Balance Operations

  • get_supported_chain: Retrieve information on chains supported by the DEX Balance endpoint.
  • get_specific_token_balance: Retrieve the list of token balances for an address across multiple chains or specified chains.
  • get_total_token_balances: Retrieve the list of token balances for an address across multiple chains or specified chains.
  • get_total_value: Retrieve the total balance of all tokens and DeFi assets under an account.

Gateway Operations

  • get_supported_chain: Retrieve information on chains supported by Onchain gateway API
  • broadcast_transactions: Broadcast transactions to the specified blockchain.
  • get_gas_limit: Retrieve estimated Gas Limit consumption through pre-execution of transaction information.
  • get_gas_price: Dynamically obtain estimated gas prices for various chains.
  • get_transaction_orders: Get the list of orders sent from transaction broadcasting API. This supports querying transactions sorted in descending order by time.
  • simulate_transactions: Simulate a blockchain transaction before executing it to see the expected outcomes and potential risks.

Index Price Operation

  • get_supported_chain: Get the list of supported chains for the index.
  • get_historical_index_price: Query historical prices for a specific token.
  • get_token_index_price: The index price refers to a currency price calculated from the prices of multiple third-party data sources.

Market Price Operation

  • get_supported_chain: Get the list of supported chains for the market.
  • get_trades: Retrieve the recent transactions of a token.
  • get_batch_token_price: Retrieve the latest price for multiple tokens.
  • get_candlesticks_history: Retrieve historical candlestick charts.
  • get_candlesticks: Retrieve the candlestick charts.
  • get_price: Retrieve the latest price of a token.

Trade Operation

  • get_supported_chains: Retrieve information on chains supported for single-chain exchanges. The request returns supported target chains for cross-chain transactions.
  • approve_transactions: According to the ERC-20 standard, we need to make sure that the OKX router has permission to spend funds with the user's wallet before making a transaction. This API will generate the relevant data for calling the contract.
  • execute_swap: Generate the data to call the OKX DEX router to execute a swap.
  • get_liquidity_sources: Get a list of liquidity that are available for swap in the OKX aggregation protocol.
  • get_quotes: Get the best quote for a swap through OKX DEX.
  • get_swap_instructions: Obtain transaction instruction data for redemption or custom assembly in Solana.
  • get_tokens: It fetches a list of tokens. This interface returns a list of tokens that belong to major platforms or are deemed significant enough by OKX. However, you can still quote and swap other tokens outside of this list on OKX DEX.
  • get_transaction_status: Get the final transaction status of a single-chain swap using txhash

Transaction Operation

  • get_supported_chain:Retrieve information on chains supported by Transaction history API.
  • get_history_by_address: Query the transaction history under the address dimension, sorted in descending chronological order.
  • get_specific_transaction: Retrieve details of a transaction based on txHash.

Prerequisites

Installation

  1. Clone this repository:

    git clone https://github.com/memetus/okx-mcp-playground
    cd okx-mcp-playground
    
  2. Install dependencies:

    npm install
    # or
    npm i
    
  3. Build the project:

    npm run build
    
  4. Build the project with Smithery:

    npm run build:smithery
    

Configuration

Configure Claude Desktop

To configure Claude Desktop to use this MCP server:

  1. Open Claude Desktop

  2. Navigate to the Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  3. Add the MCP server configuration:

{
  "mcpServers": {
    "okx-mcp-playground": {
      "command": "node",
      "args": ["your project path/dist/index.js"],
      "env": {
        "OKX_API_KEY": "your-okx-api-key",
        "OKX_API_SECRET": "your-okx-api-secret",
        "OKX_PASSPHRASE": "your-okx-api-passphrase",
        "OKX_PROJECT_ID": "your-okx-project-id"
      }
    }
  }
}

Environment Variables

OKX_API_KEY=""
OKX_API_SECRET=""
OKX_PASSPHRASE=""
OKX_PROJECT_ID=""

Running Locally

node dist/index.js

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.