AgentHubAgentHub

UCAI

MCP ServerMCP Registry官方收录

io.github.nirholas/abi-to-mcp · v0.1.0

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

概览

UCAI 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "abi-to-mcp": {
      "command": "uvx",
      "args": [
        "abi-to-mcp"
      ]
    }
  }
}

环境变量

WEB3_PROVIDER_URL可选

Ethereum JSON-RPC endpoint URL

ETHERSCAN_API_KEY可选secret

Etherscan API key for fetching verified contract ABIs

PRIVATE_KEY可选secret

Private key for signing transactions (write operations)

相关资源

统一 Manifest

{
  "id": "io.github.nirholas/abi-to-mcp",
  "type": "mcp-server",
  "version": "0.1.0",
  "displayName": "UCAI",
  "description": "UCAI — The ABI-to-MCP Server Generator. Convert any smart contract ABI into an AI-ready MCP server.",
  "repository": {
    "url": "https://github.com/nirholas/UCAI",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "abi-to-mcp",
        "version": "0.1.0",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "WEB3_PROVIDER_URL",
            "description": "Ethereum JSON-RPC endpoint URL"
          },
          {
            "name": "ETHERSCAN_API_KEY",
            "description": "Etherscan API key for fetching verified contract ABIs",
            "isSecret": true
          },
          {
            "name": "PRIVATE_KEY",
            "description": "Private key for signing transactions (write operations)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.nirholas/abi-to-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.nirholas%2Fabi-to-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
UCAI — MCP Server 安装与配置 · AgentHub