← Back to browse

UCAI

Indexed by io.github.nirholas

About

UCAI — The ABI-to-MCP Server Generator. Convert any smart contract ABI into an AI-ready MCP server.

Use this server

Add it to your MCP client. The catalogue lists this config verbatim from its source — it does not run, download, or vouch for the server. Review the command before you run it.

Transportstdio (runs a local command)
Env varsWEB3_PROVIDER_URL ETHERSCAN_API_KEY PRIVATE_KEY
Claude Code
claude mcp add --env WEB3_PROVIDER_URL= --env ETHERSCAN_API_KEY= --env PRIVATE_KEY= abi-to-mcp -- uvx abi-to-mcp
Cursor

Add to Cursor

If the button doesn't open Cursor, use the JSON below — Cursor accepts the same mcpServers config.

VS Code
code --add-mcp '{"name":"abi-to-mcp","command":"uvx","args":["abi-to-mcp"],"env":{"WEB3_PROVIDER_URL":"","ETHERSCAN_API_KEY":"","PRIVATE_KEY":""}}'
JSON
{
  "mcpServers": {
    "abi-to-mcp": {
      "command": "uvx",
      "args": [
        "abi-to-mcp"
      ],
      "env": {
        "WEB3_PROVIDER_URL": "",
        "ETHERSCAN_API_KEY": "",
        "PRIVATE_KEY": ""
      }
    }
  }
}

Environment variables are listed by name only — fill in your own values. Entries never carry secrets.