eth-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eth-mcpBuild me a swapping app with a 1% tax token on Base"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eth-mcp
MCP server that enables AI agents to build and deploy Ethereum applications using Scaffold-ETH.
The AI is the planner. The MCP server is the executor.
Quick Start
Add to your Cursor MCP config (~/.cursor/mcp.json):
{
"mcpServers": {
"eth-mcp": {
"command": "npx",
"args": ["-y", "eth-mcp@latest"]
}
}
}Restart Cursor. Done! Now ask your AI:
"Build me a swapping app with a 1% tax token on Base"
Related MCP server: multivon-mcp
What This Does
eth-mcp is a Model Context Protocol (MCP) server that:
Clones and configures Scaffold-ETH projects - Foundry + Next.js stack
Manages long-running processes - Anvil fork, contract deployment, frontend
Provides file access - Read/write project files
Exposes logs and status - Resources for agent polling
Includes Web3 knowledge - Guides for incentive design and Solidity patterns
DeFi address registry - Token and protocol addresses across 5 chains
DeFi yield tools - Query live APY/TVL data from DefiLlama
This enables AI agents to go from natural language to running dApp without manual intervention.
Recommended MCP Stack
eth-mcp is designed to work alongside companion MCP servers for a complete Ethereum development experience. We strongly recommend installing all three:
MCP Server | Purpose | Essential For |
eth-mcp | Build, deploy, run local dev | Core functionality |
mcp-server-ens | ENS name resolution | Resolving .eth names (vitalik.eth → 0x...) |
@blockscout/mcp-server | Blockchain exploration | Tx analysis, contract ABIs, on-chain data |
Full Configuration (Recommended)
Add all three to your ~/.cursor/mcp.json:
{
"mcpServers": {
"eth-mcp": {
"command": "npx",
"args": ["-y", "eth-mcp@latest"]
},
"ens": {
"command": "npx",
"args": ["-y", "mcp-server-ens"]
},
"blockscout": {
"command": "npx",
"args": ["-y", "@blockscout/mcp-server"]
}
}
}Division of Responsibilities
Task | eth-mcp | ENS MCP | Blockscout |
Scaffold project | ✅ | ||
Deploy contracts | ✅ | ||
Run local fork | ✅ | ||
Start frontend | ✅ | ||
Resolve vitalik.eth | ✅ | ||
Get ENS records (avatar, socials) | ✅ | ||
Check mainnet balances | ✅ | ||
Analyze transactions | ✅ | ||
Get contract ABIs | ✅ | ||
Look up token addresses | ✅ (registry) | ✅ (live) | |
Query live yield data | ✅ |
Example Workflow
1. Use ENS MCP to resolve "vitalik.eth" to get the address
2. Use Blockscout to check their USDC balance and recent transactions
3. Use eth-mcp to scaffold a project that interacts with their address
4. Use eth-mcp to write and deploy contracts locally
5. Use Blockscout to verify mainnet state your fork is based on
6. Use eth-mcp to start frontend and testWhy All Three?
eth-mcp handles the local development loop: scaffolding, forking, deploying, hot-reloading
ENS MCP handles name resolution: converting human-readable .eth names to addresses
Blockscout handles blockchain exploration: reading mainnet state, analyzing transactions, fetching ABIs
The AI agent orchestrates all three, choosing the right tool for each task.
Alternative Installation (from source)
# Clone the repo
git clone https://github.com/austintgriffith/eth-mcp
cd eth-mcp
# Install dependencies
npm install
# Build
npm run buildConfigure MCP Client (local)
Add to your MCP settings:
{
"mcpServers": {
"eth-mcp": {
"command": "node",
"args": ["/path/to/eth-mcp/dist/index.js"]
}
}
}MCP Tools
Stack Management
Tool | Description |
| Clone Scaffold-ETH, configure for chain |
| Install dependencies (yarn install) |
| Start components: fork, deploy, frontend |
| Stop running components |
| Get health report and URLs |
Process Management
Tool | Description |
| List all managed processes |
| Get stdout/stderr for a process |
| Stop a specific process |
Project Files
Tool | Description |
| Read a project file |
| Write content to a file |
| List directory contents |
MCP Resources
Resources for polling status and logs:
Resource URI | Description |
| Current stack health |
| Stack configuration |
| Anvil fork output |
| Anvil fork errors |
| Next.js output |
| Next.js errors |
| Deployed contract addresses |
Example Agent Workflow
Here's how an AI agent would build a tax token swap app:
Agent: "Build a swapping app with a 1% tax token on Base"
1. stack_init({ template: "scaffold-eth", chain: "base", workspacePath: "/tmp/tax-swap" })
→ Clones scaffold-eth-2, configures for Base
2. stack_install()
→ Runs yarn install
3. project_writeFile({ path: "packages/foundry/contracts/TaxToken.sol", content: "..." })
→ Creates the tax token contract
4. project_writeFile({ path: "packages/foundry/script/Deploy.s.sol", content: "..." })
→ Updates deploy script
5. stack_start({ components: ["fork", "deploy", "frontend"] })
→ Starts Anvil fork of Base
→ Deploys contracts
→ Starts Next.js
6. stack_status()
→ Returns: { urls: { rpc: "http://localhost:8545", frontend: "http://localhost:3000" } }
7. project_writeFile({ path: "packages/nextjs/app/page.tsx", content: "..." })
→ Creates swap UI on home page
Result: Running app at http://localhost:3000Supported Chains
Chain | ID | Fork RPC |
mainnet | 1 | Public RPC |
base | 8453 | Public RPC |
optimism | 10 | Public RPC |
arbitrum | 42161 | Public RPC |
polygon | 137 | Public RPC |
sepolia | 11155111 | Public RPC |
Documentation for AI Agents
The docs/ folder contains guides that help AI agents understand Web3 development:
WEB3_DEVELOPMENT_GUIDE.md - Mental model shift, incentive thinking, security patterns
SOLIDITY_PATTERNS.md - Common contract patterns and templates
DEFI_BUILDING_BLOCKS.md - DeFi primitives and composability
AI agents should read these before building complex applications.
Protocol Packs
Example protocol integrations in protocol-packs/:
uniswap-v4-tax-swap
Placeholder implementation of:
TaxToken.sol- ERC-20 with 1% transfer taxTaxSwapHook.sol- Uniswap V4 hook for tax handlingSwapUI.tsx- React swap interface
This shows structure, not full implementation. V4 is still in development.
Safety
The server enforces several safety constraints:
Command Allowlist:
Only
git,yarn,npm,pnpm,npx,forge,anvil,cast,node
Private Key Protection:
Sanitizes output to remove private keys
Blocks access to
.envfilesFilters sensitive environment variables
No Mainnet Writes:
Local development only
Fork-based testing
Architecture
┌─────────────────────────────────────────────────────────────┐
│ AI Agent │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ "Build me a swapping app with a 1% tax token" │ │
│ └─────────────────────────────────────────────────────┘ │
└─────────────────────────┬───────────────────────────────────┘
│ MCP Protocol
┌─────────────────────────▼───────────────────────────────────┐
│ eth-mcp │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │ Stack │ │ Process │ │ Project │ │Resources │ │
│ │ Tools │ │ Manager │ │ Tools │ │ │ │
│ └────┬─────┘ └────┬─────┘ └────┬─────┘ └────┬─────┘ │
└───────┼─────────────┼─────────────┼─────────────┼──────────┘
│ │ │ │
┌───────▼─────────────▼─────────────▼─────────────▼──────────┐
│ Workspace │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ scaffold-eth-2 │ │
│ │ ┌───────────────┐ ┌───────────────────────────┐ │ │
│ │ │ Foundry │ │ Next.js │ │ │
│ │ │ (Contracts) │ │ (Frontend) │ │ │
│ │ └───────────────┘ └───────────────────────────┘ │ │
│ └─────────────────────────────────────────────────────┘ │
│ │
│ ┌─────────────────┐ ┌─────────────────────────────────┐ │
│ │ Anvil Fork │ │ http://localhost:3000 │ │
│ │ (Base chain) │ │ (Running app) │ │
│ └─────────────────┘ └─────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘Development
# Watch mode
npm run dev
# Type check
npm run typecheck
# Run server directly
npm startLimitations (v1)
Local development only (no mainnet deployment)
Single workspace at a time
Basic error recovery
Placeholder protocol pack implementations
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains.1221MIT

multivon-mcpofficial
AlicenseAqualityAmaintenanceMCP server that gives AI coding agents direct access to evaluation tools.22Apache 2.0- AlicenseAqualityBmaintenanceAn MCP server that gives autonomous coding agents deterministic, schema-validated tools for EVM smart contract development — security scanning, gas profiling, compiler diagnostics, and transaction simulation.91MIT
- Alicense-qualityDmaintenanceAn MCP server that gives AI agents real-time access to DeFi across multiple chains, enabling non-custodial crypto trading, portfolio queries, and transaction execution.97MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/austintgriffith/eth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server