by mcpdotdirect
MCP server that provides LLMs with tools for interacting with EVM networks
# Add to your Claude Code skills
git clone https://github.com/mcpdotdirect/evm-mcp-serverGuides for using ai agents skills like evm-mcp-server.
Last scanned: 5/25/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-25T08:22:00.820Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}evm-mcp-server is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mcpdotdirect. MCP server that provides LLMs with tools for interacting with EVM networks. It has 379 GitHub stars.
Yes. evm-mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/mcpdotdirect/evm-mcp-server" and add it to your Claude Code skills directory (see the Installation section above).
evm-mcp-server is primarily written in TypeScript. It is open-source under mcpdotdirect on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh evm-mcp-server against similar tools.
No comments yet. Be the first to share your thoughts!
A comprehensive Model Context Protocol (MCP) server that provides blockchain services across 60+ EVM-compatible networks. This server enables AI agents to interact with Ethereum, Optimism, Arbitrum, Base, Polygon, and many other EVM chains with a unified interface through 22 tools and 10 AI-guided prompts.
The MCP EVM Server leverages the Model Context Protocol to provide blockchain services to AI agents. It supports a wide range of services including:
All services are exposed through a consistent interface of MCP tools, resources, and prompts, making it easy for AI agents to discover and use blockchain functionality. Every tool that accepts Ethereum addresses also supports ENS names, automatically resolving them to addresses behind the scenes. The server includes intelligent ABI fetching, eliminating the need to know contract ABIs in advance.
ERC20 Tokens
NFTs (ERC721)
Multi-tokens (ERC1155)
# Clone the repository
git clone https://github.com/mcpdotdirect/evm-mcp-server.git
cd evm-mcp-server
# Install dependencies with Bun
bun install
# Or with npm
npm install
The server uses the following environment variables. For write operations and ABI fetching, you must configure these variables:
You can configure your wallet using either a private key or a mnemonic phrase:
Option 1: Private Key
export EVM_PRIVATE_KEY="0x..." # Your private key in hex format (with or without 0x prefix)
Option 2: Mnemonic Phrase (Recommended for HD Wallets)
export EVM_MNEMONIC="word1 word2 word3 ... word12" # Your 12 or 24 word BIP-39 mnemonic
export EVM_ACCOUNT_INDEX="0" # Optional: Account index for HD wallet derivation (default: 0)
The mnemonic option supports hierarchical deterministic (HD) wallet derivation:
m/44'/60'/0'/0/{accountIndex}EVM_ACCOUNT_INDEX allows you to derive different accounts from the same mnemonicWallet is used for:
transfer_native tool)transfer_erc20 tool)approve_token_spending tool)write_contract tool)sign_message tool)sign_typed_data tool)⚠️ Security:
export ETHERSCAN_API_KEY="your-api-key-here"
This API key is optional but required for:
get_contract_abi tool)read_contract tool with abiJson parameter)fetch_and_analyze_abi promptGet your free API key from:
The server uses the following default configuration:
These values are hardcoded in the application. If you need to modify them, you can edit the following files:
src/core/chains.tssrc/server/http-server.tsYou can run the MCP EVM Server directly without installation using npx:
# Run the server in stdio mode (for CLI tools)
npx @mcpdotdirect/evm-mcp-server
# Run the server in HTTP mode (for web applications)
npx @mcpdotdirect/evm-mcp-server --http
Start the server using stdio (for embedding in CLI tools):
# Start the stdio server
bun start
# Development mode with auto-reload
bun dev
Or start the HTTP server with SSE for web applications:
# Start the HTTP server
bun start:http
# Development mode with auto-reload
bun dev:http
Connect to this MCP server using any MCP-compatible client. For testing and debugging, you can use the MCP Inspector.
To connect to the MCP server from Cursor: