🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

okx-dex-mcp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

okx-dex-mcp

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

0.1.8
PyPI
Maintainers
1

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

  • Create a free account at OKX.com
  • Go to AccountAPI Management
  • 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

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

NetworkChain IDNative Token
Ethereum1ETH
Polygon137MATIC/POL
BSC56BNB
Avalanche43114AVAX
Arbitrum42161ETH
Optimism10ETH
Fantom250FTM
Solana501SOL

🤝 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.

Keywords

blockchain

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts