Skip to main content

OKX DEX Trading MCP Server - Model Context Protocol server for decentralized exchange trading via OKX API

Project description

OKX DEX Trading MCP Server

PyPI version Python 3.9+ License: MIT

A powerful Model Context Protocol (MCP) server that provides comprehensive decentralized exchange (DEX) trading capabilities through the OKX API. This server enables AI assistants and applications to interact with 27+ blockchain networks for real-time trading, price discovery, and cross-chain operations.

🚀 Features

Core Capabilities

  • Real-time DEX Trading - Execute swaps across 27+ blockchain networks
  • Cross-chain Operations - Bridge and swap tokens between different chains
  • Price Discovery - Get real-time quotes and market data
  • Token Search - Find tokens across multiple networks
  • Market Analysis - Access top tokens and market summaries
  • Automatic Handling - Built-in token approvals and retry logic

Supported Networks

  • Ethereum (ETH) - Chain ID: 1
  • Polygon (MATIC/POL) - Chain ID: 137
  • Binance Smart Chain (BSC) - Chain ID: 56
  • Avalanche C-Chain - Chain ID: 43114
  • Arbitrum - Chain ID: 42161
  • Optimism - Chain ID: 10
  • Fantom - Chain ID: 250
  • Solana (SOL) - Chain ID: 501
  • And 20+ more networks

DEX Integration

  • Uniswap V2/V3 - Leading Ethereum DEX
  • PancakeSwap - BSC's primary DEX
  • QuickSwap - Polygon's main DEX
  • TraderJoe - Avalanche DEX
  • Jupiter - Solana's leading DEX aggregator
  • Raydium - Solana AMM and DEX
  • And many more via OKX DEX aggregation

Blockchain-Specific Features

  • EVM Chains: Automatic token approvals, gas optimization, retry logic
  • Solana: Native SPL token support, no approval transactions needed, automatic ATA creation

📦 Installation

pip install okx-dex-mcp

🔧 Setup

1. Get OKX API Credentials

  1. Create a free account at OKX.com
  2. Go to AccountAPI Management
  3. Create a new API key with the following permissions:
    • Read - For market data access
    • Trade - For DEX operations (if needed)

2. Configure Environment Variables

Create a .env file in your project directory:

# OKX API Configuration
OKX_API_KEY=your_api_key_here
OKX_SECRET_KEY=your_secret_key_here
OKX_PASSPHRASE=your_passphrase_here

# Optional: Enable sandbox mode for testing
OKX_SANDBOX=false

3. Verify Installation

# Test the installation with demo mode
okx-dex-demo

🎯 Usage

🚀 Quick Start with UVX (Recommended)

Run directly from PyPI without installation:

# Run demo (one command)
uvx --from okx-dex-mcp okx-dex-demo

# Start MCP server (one command)
uvx --from okx-dex-mcp okx-dex-mcp

📦 Traditional Installation

Install and run locally:

# Install the package
pip install okx-dex-mcp

# Run demo
okx-dex-demo

# Start MCP server
okx-dex-mcp

As MCP Server

Start the MCP server for integration with AI assistants:

okx-dex-mcp

As Python Library

import asyncio
from okx_dex_mcp.analysis.dex_analysis import search_dex_tokens
from okx_dex_mcp.swap.quotes import get_quote
from okx_dex_mcp.swap.swaps import execute_swap

async def example_usage():
    # Search for USDC on Ethereum
    tokens = await search_dex_tokens("USDC", "1")
    print(f"Found {len(tokens)} USDC tokens")
    
    # Get a trading quote
    quote = await get_dex_quote(
        from_token="0xa0b86a33e6ba3e0e4ca4ba5e7e5e8e8e8e8e8e8e",
        to_token="0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
        amount="1000000",  # 1 USDC (6 decimals)
        chain_id="1"
    )
    print(f"Quote: {quote}")

# Run the example
asyncio.run(example_usage())

🛠️ MCP Tools

The server provides 11 essential tools for DEX operations:

Credentials & Setup

Market Data

  • get_supported_dex_chains_tool - Get list of supported blockchain networks
  • get_chain_top_tokens_tool - Get top tokens by market cap on specific chains
  • search_dex_tokens_tool - Search for tokens by name or symbol
  • get_dex_market_summary_tool - Get comprehensive market data for tokens

Same-Chain Trading

  • get_dex_quote_tool - Get DEX trading quotes with price impact analysis
  • execute_dex_swap_tool - Execute same-chain swaps with automatic token approval
  • check_token_allowance_status_tool - Check token allowances (debugging utility)

Cross-Chain Trading

  • get_quote - Get trading quotes (both same-chain and cross-chain)
  • get_bridge_token_suggestions_tool - Get bridge token recommendations
  • execute_swap - Execute swaps (both same-chain and cross-chain)

💡 Examples

Example 1: Get Market Data

# Get top 10 tokens on Polygon
top_tokens = await get_chain_top_tokens("137", 10)

# Search for WETH tokens
weth_tokens = await search_dex_tokens("WETH", "1")

# Get market summary for ETH
eth_summary = await get_dex_market_summary("ETH", "1")

Example 2: Get Trading Quote

# Get quote for swapping 0.1 ETH to USDC on Ethereum
quote = await get_dex_quote(
    from_token="0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",  # ETH
    to_token="0xA0b86a33E6Ba3E0E4Ca4ba5E7E5E8E8E8E8E8E8E",    # USDC
    amount="100000000000000000",  # 0.1 ETH (18 decimals)
    chain_id="1"
)

Example 3: Execute Swap

# Execute the swap (requires wallet private key)
result = await execute_dex_swap(
    from_token="0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
    to_token="0xA0b86a33E6Ba3E0E4Ca4ba5E7E5E8E8E8E8E8E8E",
    amount="100000000000000000",
    chain_id="1",
    user_wallet_address="0x...",
    private_key="your_private_key",
    slippage="0.5"  # 0.5%
)

🔒 Security

Private Key Handling

  • Private keys are only used for transaction signing
  • Keys are never stored or logged
  • All operations use secure Web3 libraries
  • Transactions are signed locally

API Security

  • OKX API credentials are encrypted in transit
  • Rate limiting and error handling built-in
  • Sandbox mode available for testing

🐛 Troubleshooting

Common Issues

"API credentials invalid"

  • Verify your OKX API key, secret, and passphrase
  • Ensure API key has proper permissions
  • Check if sandbox mode is correctly configured

"Insufficient liquidity"

  • Try a larger trade amount
  • Check if the token pair has sufficient liquidity
  • Consider using a different DEX or route

"Transaction failed"

  • Increase slippage tolerance
  • Ensure sufficient gas fees
  • Verify wallet has enough balance

Debug Mode

Enable detailed logging:

import logging
logging.basicConfig(level=logging.DEBUG)

📚 Documentation

API Reference

Chain IDs Reference

Network Chain ID Native Token
Ethereum 1 ETH
Polygon 137 MATIC/POL
BSC 56 BNB
Avalanche 43114 AVAX
Arbitrum 42161 ETH
Optimism 10 ETH
Fantom 250 FTM
Solana 501 SOL

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

git clone https://github.com/okx/okx-dex-mcp.git
cd okx-dex-mcp
pip install -e ".[dev]"

Running Tests

pytest tests/

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🆘 Support

🙏 Acknowledgments

  • OKX for providing the DEX API
  • Model Context Protocol for the MCP specification
  • The DeFi community for building amazing decentralized exchanges

⚠️ Disclaimer: This software is for educational and development purposes. Always test with small amounts first and understand the risks involved in DeFi trading. The authors are not responsible for any financial losses.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

okx_dex_mcp-0.1.7.tar.gz (32.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

okx_dex_mcp-0.1.7-py3-none-any.whl (40.7 kB view details)

Uploaded Python 3

File details

Details for the file okx_dex_mcp-0.1.7.tar.gz.

File metadata

  • Download URL: okx_dex_mcp-0.1.7.tar.gz
  • Upload date:
  • Size: 32.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.9

File hashes

Hashes for okx_dex_mcp-0.1.7.tar.gz
Algorithm Hash digest
SHA256 167d248433701e4069c9f95b2d1b088d467b116d24809e40136b85dd1661c931
MD5 a95ea7a832b5278a8ff8ed7a3440401b
BLAKE2b-256 d23118d909fc5d0554b2ae09928582887da377753b5ee82e334c7b5aec79f1d9

See more details on using hashes here.

File details

Details for the file okx_dex_mcp-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for okx_dex_mcp-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 57e9de6a935f03706d83dd69e609d89c5992385cad48ccdf75dbfafb5258b488
MD5 b12211d1e657957094b58ec1244e80bd
BLAKE2b-256 3874fc9b5dc0d0357355de5183d4d3d5c905126546bdaf3d3ff9b471d3aa5b67

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page