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
EVM MCP Server
hexagon

EVM MCP Server MCP Server

Ethereum and EVM-compatible chain tools

ethereumevmblockchainquicknode

About

## EVM MCP Server: Ethereum Virtual Machine Tools The **EVM MCP Server** provides low-level EVM interaction tools for Google Antigravity, enabling developers to debug smart contracts, analyze bytecode, and execute EVM operations for blockchain development. ### Why EVM MCP? - **Contract debugging** - Step through contract execution - **Bytecode analysis** - Disassemble and analyze bytecode - **State inspection** - Inspect contract storage - **Gas profiling** - Analyze gas consumption - **Trace execution** - Full execution traces ### Key Features #### 1. Contract Analysis ```python # Analyze contract bytecode analysis = await mcp.call("evm", "analyze_contract", { "address": "0x...", "chain": "ethereum" }) print(f"Functions: {analysis[\"function_count\"]}") print(f"Events: {analysis[\"event_count\"]}") # Disassemble bytecode opcodes = await mcp.call("evm", "disassemble", { "bytecode": "0x608060405..." }) ``` #### 2. Transaction Tracing ```python # Trace transaction execution trace = await mcp.call("evm", "trace_transaction", { "hash": "0x...", "trace_type": ["vmTrace", "stateDiff"] }) for step in trace["vmTrace"]["ops"]: print(f"{step[\"pc\"]}: {step[\"op\"]} gas={step[\"gas\"]}") # Debug call result = await mcp.call("evm", "debug_call", { "from": "0x...", "to": "0x...", "data": "0x..." }) ``` #### 3. Storage Inspection ```python # Get contract storage storage = await mcp.call("evm", "get_storage", { "address": "0x...", "slots": [0, 1, 2] }) for slot, value in storage.items(): print(f"Slot {slot}: {value}") # Read storage at specific block historical = await mcp.call("evm", "get_storage_at", { "address": "0x...", "slot": 0, "block": 18000000 }) ``` #### 4. Gas Profiling ```python # Profile gas usage profile = await mcp.call("evm", "profile_gas", { "to": "0x...", "data": "0xa9059cbb..." }) print(f"Total gas: {profile[\"total_gas\"]}") for op, gas in profile["by_opcode"].items(): print(f" {op}: {gas}") ``` ### Configuration ```json { "mcpServers": { "evm": { "command": "npx", "args": ["-y", "@anthropic/mcp-evm"], "env": { "ETH_RPC_URL": "https://eth.llamarpc.com", "ARCHIVE_NODE_URL": "https://archive.eth.llamarpc.com" } } } } ``` ### Use Cases **Contract Debugging**: Debug smart contract issues. **Security Auditing**: Analyze contract bytecode. **Gas Optimization**: Optimize contract gas usage. **Transaction Analysis**: Understand transaction behavior. The EVM MCP Server enables low-level blockchain development.

Installation

Configuration
{
  "mcpServers": {
    "evm": {
      "mcpServers": {
        "evm": {
          "env": {
            "QUICKNODE_ENDPOINT": "YOUR_ENDPOINT"
          },
          "args": [
            "-y",
            "@quicknode/evm-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get QuickNode endpoint URL
  2. 2Supports all EVM-compatible chains
  3. 3Includes gas price monitoring

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