Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Web3 Multi-Chain MCP Server
link

Web3 Multi-Chain MCP Server MCP Server

One MCP to rule all blockchain chains

web3blockchainmultichaincrypto

About

## Web3 Multi-Chain MCP Server: Universal Blockchain Access The **Web3 Multi-Chain MCP Server** provides unified blockchain access across multiple networks, enabling developers to interact with Ethereum, Polygon, BSC, Arbitrum, and other EVM-compatible chains from Google Antigravity. ### Why Web3 Multi-Chain MCP? - **Multi-chain** - Support for all major EVM chains - **Unified API** - Same interface across all chains - **Chain switching** - Easy network switching - **Cross-chain queries** - Query multiple chains simultaneously - **Gas optimization** - Compare gas across chains ### Key Features #### 1. Chain Selection ```python # List supported chains chains = await mcp.call("web3", "list_chains", {}) for chain in chains: print(f"{chain[\"name\"]}: Chain ID {chain[\"chain_id\"]}") # Set active chain await mcp.call("web3", "set_chain", { "chain_id": 137 # Polygon }) ``` #### 2. Multi-Chain Queries ```python # Get balance on multiple chains balances = await mcp.call("web3", "get_balances", { "address": "0x...", "chains": ["ethereum", "polygon", "arbitrum"] }) for chain, balance in balances.items(): print(f"{chain}: {balance} native token") # Get token balance across chains token_balances = await mcp.call("web3", "get_token_balances", { "address": "0x...", "token_symbol": "USDC" }) ``` #### 3. Transaction Execution ```python # Send transaction on specific chain tx = await mcp.call("web3", "send_transaction", { "chain": "polygon", "to": "0x...", "value": "1.0", "gas_price": "auto" }) # Wait for confirmation receipt = await mcp.call("web3", "wait_for_transaction", { "chain": "polygon", "hash": tx["hash"] }) ``` #### 4. Gas Comparison ```python # Compare gas prices across chains gas_prices = await mcp.call("web3", "compare_gas_prices", { "chains": ["ethereum", "polygon", "arbitrum", "optimism"] }) for chain, price in gas_prices.items(): print(f"{chain}: {price[\"gwei\"]} gwei") ``` ### Configuration ```json { "mcpServers": { "web3": { "command": "npx", "args": ["-y", "@anthropic/mcp-web3"], "env": { "ETH_RPC_URL": "https://eth.llamarpc.com", "POLYGON_RPC_URL": "https://polygon.llamarpc.com", "ARBITRUM_RPC_URL": "https://arb1.arbitrum.io/rpc" } } } } ``` ### Use Cases **Multi-Chain dApps**: Build cross-chain applications. **Portfolio Tracking**: Monitor assets across chains. **Chain Comparison**: Find optimal chains for transactions. **Cross-Chain Bridges**: Facilitate cross-chain transfers. The Web3 Multi-Chain MCP Server enables universal blockchain access.

Installation

Configuration
{
  "mcpServers": {
    "web3": {
      "mcpServers": {
        "web3": {
          "env": {
            "ETH_RPC_URL": "YOUR_ETH_RPC",
            "SOL_RPC_URL": "YOUR_SOL_RPC"
          },
          "args": [
            "-y",
            "@strangelove-ventures/web3-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Configure RPC URLs for each chain
  2. 2Supports 10+ blockchain networks
  3. 3Secure environment variable configuration

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers