OKX MCP Server

OKX MCP Server

Enables AI assistants to interact with OKX trading accounts through read-only access to retrieve portfolio information, trading positions, order history, and account analytics. Provides secure, local processing of trading data without storing sensitive information or enabling trade execution.

Category
访问服务器

README

OKX MCP Server

npm version Downloads License Node.js Version TypeScript

A Model Context Protocol (MCP) server that provides access to OKX trading and portfolio management functionality. This package allows AI assistants to interact with your OKX account to retrieve portfolio information, trading positions, order history, and more.

This MCP server is designed with security as a top priority. Here's what makes it safe to use:

🔒 Built-in Security Features

  • Read-Only Access: The server only requires read permissions - it cannot place trades or withdraw funds
  • Local Processing: All data is processed locally on your machine and never stored or transmitted to third parties
  • No Data Persistence: Your trading data is never saved to disk or cached permanently
  • Direct API Communication: Connects directly to OKX APIs without intermediary servers

What You Can Do

📱 See It In Action

Claude Desktop with OKX MCP Server

Example: Ask Claude "give me account summary" and instantly get your portfolio breakdown, asset allocation, and trading insights—all from your OKX account data.

Transform your trading experience with AI-powered portfolio insights. Once configured, you can ask Claude natural language questions about your OKX account:

💰 Portfolio Management

  • "What's my current portfolio balance?"
  • "Show me my asset allocation"
  • "Which coins do I own and how much are they worth?"
  • "What's my biggest position by value?"

📊 Trading Analysis

  • "Show me my open positions with P&L"
  • "What orders do I have pending?"
  • "Analyze my BTC trading history from last month"
  • "How did my ETH trades perform this week?"

🎯 Smart Insights

  • "What's my total unrealized profit/loss?"
  • "Which assets have gained the most value?"
  • "Give me a summary of my trading activity"
  • "How is my portfolio performing today?"

🔍 Detailed Reporting

  • "Create a detailed report of my portfolio"
  • "Show me all my completed trades for BTC-USDT"
  • "What's my trading volume for this month?"
  • "Break down my portfolio by percentage"

The AI can provide instant analysis, generate insights, and help you make informed trading decisions—all through simple conversation.

Quick Start

Step 1: Create OKX API Credentials

  1. Access Your OKX Account:

    • Existing users: Go to OKX.com and log in
    • New users: Sign up at OKX.com and complete account verification
  2. Open API Management:

  3. Create Your API Key:

    • Click "Create API Key"
    • Enter a descriptive name (e.g., "MCP Server")
    • Create and save a secure passphrase (you'll need this later)
  4. Set Read-Only Permissions:

    • Read: ✅ Enable (required for portfolio access)
    • Trade: ❌ Disable (not needed for this MCP server)
    • Withdraw: ❌ Disable (not needed for this MCP server)
  5. Generate and Copy Credentials:

    • Click "Submit All" to create the API key
    • Click "Show info" to reveal your credentials
    • Click "Copy API key info" to copy all details

    Your credentials will look like this:

    apikey = "12345678-abcd-1234-efgh-123456789abc"
    secretkey = "ABCD1234EFGH5678IJKL9012MNOP3456"
    IP = ""
    API key name = "MCP Server"
    Permissions = "Read"
    
  6. Secure Your Credentials:

    • Save the API Key, Secret Key, and Passphrase in a secure location
    • ⚠️ Critical: The Secret Key is only shown once - save it immediately!
    • These credentials will be used to configure Claude Desktop in the next step

Step 2: Install Prerequisites

Before configuring Claude Desktop, you need to install Node.js.

Install Node.js

Option 1: Download from Official Website

  1. Visit https://nodejs.org
  2. Download the LTS (Long Term Support) version for your operating system
  3. Run the installer and follow the setup wizard

Step 3: Configure Claude Desktop

  1. Open Claude Desktop Settings:

    • Launch Claude Desktop application
    • Click on Settings (gear icon in the bottom-left corner)
  2. Access Developer Section:

    • Scroll down to the bottom of the settings panel
    • Click on "Developer" section
  3. Edit Configuration:

    • Click on "Edit Config" button
    • This will open the claude_desktop_config.json file in your default text editor
  4. Add OKX MCP Server Configuration:

    • Replace the entire file content with this configuration:
    {
      "mcpServers": {
        "okx-mcp": {
          "command": "okx-mcp",
          "env": {
            "OKX_API_KEY": "your_api_key_here",
            "OKX_API_SECRET": "your_secret_key_here",
            "OKX_API_PASSPHRASE": "your_passphrase_here"
          }
        }
      }
    }
    
  5. Update Your Credentials:

    • Replace your_api_key_here with your actual API Key from Step 1
    • Replace your_secret_key_here with your actual Secret Key from Step 1
    • Replace your_passphrase_here with your actual Passphrase from Step 1
    • Save the file and close the text editor
  6. Restart Claude Desktop:

    • Close Claude Desktop completely
    • Reopen the application to load the new configuration
  7. Test the Connection:

    • Start a new conversation in Claude Desktop
    • Try asking: "Show my portfolio" or "Get my account summary"
    • If successful, Claude will retrieve and display your OKX account data

Available Tools

This MCP server provides the following tools for AI assistants:

1. Get Account Summary

  • Tool: get_account_summary
  • Description: Get aggregated portfolio metrics including total value and asset allocation
  • Parameters: None

2. Get Portfolio

  • Tool: get_portfolio
  • Description: Get detailed information about all assets in your account
  • Parameters: None
  • Returns: List of currencies with balances, available amounts, and USDT values

3. Get Positions

  • Tool: get_positions
  • Description: Get all open derivative trading positions
  • Parameters: None
  • Returns: Position details including size, entry price, and unrealized P&L

4. Get Open Orders

  • Tool: get_open_orders
  • Description: Get all currently open trading orders
  • Parameters: None
  • Returns: Order details including symbol, type, price, and status

5. Get Order History

  • Tool: get_order_history
  • Description: Get historical filled orders for analysis
  • Parameters:
    • instId (required): Instrument ID (e.g., "BTC-USDT")
    • begin (optional): Start timestamp
    • end (optional): End timestamp
  • Returns: Historical order data with execution details

Development

Local Development

# Clone the repository
git clone https://github.com/maxbarinov/okx-mcp.git
cd okx-mcp

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env
# Edit .env with your OKX API credentials

# Run in development mode
npm run dev

Building

npm run build

Project Structure

src/
├── services/
│   └── okxApiClient.ts    # OKX API client wrapper
└── tools/                # MCP tool implementations
    ├── get_account_summary.ts
    ├── get_portfolio.ts
    ├── get_positions.ts
    ├── get_open_orders.ts
    └── get_order_history.ts

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT

Support

If you encounter any issues or have questions:

  1. Check the GitHub Issues
  2. Create a new issue with detailed information about your problem
  3. Include your environment details and error messages (without sensitive data)

Related Projects

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选