Brings ZetaChain's universal blockchain capabilities into Claude through the official CLI and Foundry toolkit. You get account creation and import, cross-chain transaction querying, token withdrawals between chains like Ethereum, BSC, and Polygon, plus contract calls that span multiple networks. The server exposes 65+ tools including forge operations for building and testing, cast commands for contract interaction, and ZetaChain-specific operations like governance voting and staking. Installs via NPM with automatic CLI setup, or run it hosted through Smithery if you want to explore without local tooling. Reach for this when you're building omnichain contracts or need to manage cross-chain operations without context switching between different blockchain CLIs.
A comprehensive Model Context Protocol (MCP) server for universal blockchain development, providing full access to ZetaChain CLI, Foundry, and cross-chain functionality through AI assistants.
Note: Advanced tools provide full functionality when installed locally via NPM. Cloud versions provide helpful guidance and installation instructions.
One-Click Install with Auto-Setup:
npm install -g @ExpertVagabond/universal-blockchain-mcp
This automatically installs:
Usage after installation:
# Run the MCP server
universal-blockchain-mcp
# Or use with Claude Desktop
# Add to Claude Desktop config:
{
"mcpServers": {
"universal-blockchain": {
"command": "universal-blockchain-mcp",
"args": []
}
}
}
Claude Code CLI:
claude mcp add --transport http universal-blockchain "https://server.smithery.ai/@ExpertVagabond/universal-blockchain-mcp/mcp"
Deep Link (HTTP):
claude://mcp/install?name=Universal%20Blockchain%20MCP&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fserver.smithery.ai%2F%40ExpertVagabond%2Funiversal-blockchain-mcp%2Fmcp%22%7D
Manual Configuration:
{
"type": "http",
"url": "https://server.smithery.ai/@ExpertVagabond/universal-blockchain-mcp/mcp"
}
Smithery Registry:
# Install via Smithery registry
SMITHERY_API_KEY=your_key smithery run @ExpertVagabond/universal-blockchain-mcp
mcp.so Registry:
PulseMCP Directory:
Glama Registry:
Fleur (Mac + Claude):
stdio Configuration (Local):
{
"type": "stdio",
"command": "npx",
"args": ["-y", "@ExpertVagabond/universal-blockchain-mcp"]
}
Custom CLI Path:
{
"type": "stdio",
"command": "/path/to/universal-blockchain-mcp",
"args": []
}
# Clone and setup everything
git clone https://github.com/ExpertVagabond/zetachain-mcp-server.git
cd zetachain-mcp-server
npm run setup # Installs dependencies, CLI, and builds project
# 1. Clone repository
git clone https://github.com/ExpertVagabond/zetachain-mcp-server.git
cd zetachain-mcp-server
# 2. Install dependencies (includes ZetaChain CLI via npm)
npm install
# 3. Install ZetaChain CLI globally (optional, recommended)
npm install -g zetachain@latest
# 4. Build the project
npm run build
# 5. Run the server
npm start
If you have ZetaChain CLI installed locally, you can specify the path:
export ZETACHAIN_CLI_PATH=/path/to/zetachain
npm start
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Start production server
npm start
Once added to Claude, you can use all ZetaChain functionality through natural language:
Create a new ZetaChain account called "my-wallet"
Import my existing account using this private key: 0x...
Show me all my ZetaChain accounts
Check ZETA balances for address 0x742d35Cc6634C0532925a3b8D5C20aE6f0f3FFaa
What are the current cross-chain fees from Ethereum to Polygon?
Query the status of cross-chain transaction 0xabc123...
Withdraw 100 ZETA from ZetaChain to Ethereum address 0x...
List all supported chains on ZetaChain
Show me all ZRC-20 tokens
What tokens are available on BSC testnet?
Create a new ZetaChain project called "my-dapp"
Get testnet ZETA tokens for address 0x...
What's the current ZetaChain testnet status?
ZetaChain MCP server supports all ZetaChain connected chains:
This MCP server provides a bridge between AI assistants and the ZetaChain CLI, enabling:
MIT