Gives Claude direct access to ZetaChain's universal blockchain CLI for building cross-chain applications. You can scaffold new projects from templates, spin up local multi-chain dev environments with Docker, and query balances, fees, and transactions across EVM, Solana, Bitcoin, Sui, and TON networks. The MCP integration exposes commands for making cross-chain calls and transferring tokens between connected chains. Install it locally if you need filesystem access and localnet control, or use the Smithery cloud version for quick remote access without touching your local environment. Built for developers working on universal apps that need to interact with multiple blockchain networks from a single interface.
A command-line interface for building and interacting with ZetaChain universal applications. Seamlessly interact with EVM, Solana, Bitcoin, Sui, and TON, all from one CLI.
localnetRun without installing:
npx zetachain@next new
Or install globally:
npm install -g zetachain@latest
Use zetachain@next for bleeding-edge builds.
Create a new project:
zetachain new
Start localnet:
zetachain localnet start
Query cross-chain balances:
zetachain query balances
The ZetaChain CLI can be used as an MCP (Model Context Protocol) server, allowing AI assistants like Claude Code and Cursor to execute ZetaChain commands.
Install locally for full access to your filesystem, accounts, and localnet:
npm install -g zetachain
zetachain mcp install --client claude # for Claude Code
# or
zetachain mcp install --client cursor # for Cursor
Then restart your AI editor to activate the MCP server.
Check installation status:
zetachain mcp list
Remove:
zetachain mcp remove --client claude
For quick setup without local installation, visit Smithery and click "One-Click Install".
⚠️ Note: The cloud version runs on remote servers and cannot access your local files, accounts, or localnet.
For full command documentation:
zetachain docs
Or use --help with any command:
zetachain accounts --help
We welcome contributions! Please open issues or submit pull requests.