Skip to content

Latest commit

 

History

History
85 lines (52 loc) · 1.83 KB

File metadata and controls

85 lines (52 loc) · 1.83 KB

Uniswap Trader MCP

A containerized version of "Uniswap Trader MCP"

Repository: kukapay/uniswap-trader-mcp

Description

An MCP server for AI agents to automate token swaps on Uniswap DEX across multiple blockchains.

Usage

The containers are built automatically and are available on the GitHub Container Registry.

  1. Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--kukapay--uniswap-trader-mcp--uniswap-trader-mcp
  1. Run the container:
docker run -i --rm \ 
-e INFURA_KEY=infura-key -e WALLET_PRIVATE_KEY=wallet-private-key \
ghcr.io/metorial/mcp-container--kukapay--uniswap-trader-mcp--uniswap-trader-mcp  "node index.js"
  • --rm removes the container after it exits, so you don't have to clean up manually.
  • -i allows you to interact with the container in your terminal.

Configuration

The container supports the following configuration options:

Environment Variables

  • INFURA_KEY
  • WALLET_PRIVATE_KEY

Usage with Claude

{
  "mcpServers": {
    "uniswap-trader-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/metorial/mcp-container--kukapay--uniswap-trader-mcp--uniswap-trader-mcp",
        "node index.js"
      ],
      "env": {
        "INFURA_KEY": "infura-key",
        "WALLET_PRIVATE_KEY": "wallet-private-key"
      }
    }
  }
}

License

Please refer to the license provided in the project repository for more information.

Contributing

Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.

Containerized with ❤️ by Metorial