PluginBench
MCP Server
Active

io.github.donnywin85/bsc-dex-spread MCP Server

io.github.donnywin85/bsc-dex-spread

What is the io.github.donnywin85/bsc-dex-spread MCP server?

Cross-DEX price & spread for PancakeSwap v2+v3 on BSC via x402. Tool get_dex_spread(pair, fee?).

How to install io.github.donnywin85/bsc-dex-spread

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • EVM_PRIVATE_KEY
    required
    secret

    Your Base-mainnet buyer wallet private key (0x-prefixed). Funded with a few dollars of USDC on Base; needs zero ETH. Pays $0.01 USDC per call.

  • GATEWAY_URL

    Optional override of the gateway base URL. Defaults to https://x402.donnyautomation.com

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "bsc-dex-spread": {
      "command": "npx",
      "args": [
        "-y",
        "bsc-dex-spread-mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "<YOUR_EVM_PRIVATE_KEY>",
        "GATEWAY_URL": "<YOUR_GATEWAY_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "bsc-dex-spread": {
      "command": "npx",
      "args": [
        "-y",
        "bsc-dex-spread-mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "<YOUR_EVM_PRIVATE_KEY>",
        "GATEWAY_URL": "<YOUR_GATEWAY_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "bsc-dex-spread": {
      "command": "npx",
      "args": [
        "-y",
        "bsc-dex-spread-mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "<YOUR_EVM_PRIVATE_KEY>",
        "GATEWAY_URL": "<YOUR_GATEWAY_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "bsc-dex-spread": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bsc-dex-spread-mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "<YOUR_EVM_PRIVATE_KEY>",
        "GATEWAY_URL": "<YOUR_GATEWAY_URL>"
      }
    }
  }
}
Claude Code
claude mcp add bsc-dex-spread --env EVM_PRIVATE_KEY=<YOUR_EVM_PRIVATE_KEY> --env GATEWAY_URL=<YOUR_GATEWAY_URL> -- npx -y bsc-dex-spread-mcp

Related MCP servers

Live cross-DEX pool prices, liquidity and spreads on 6 EVM chains, read from on-chain pool state.

1
JavaScript
MIT
View repository →