evm-agent-toolkit
An 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.
README
EVM MCP Server
An MCP (Model Context Protocol) server that gives autonomous coding agents deterministic, schema-validated tools for EVM smart contract development — security scanning, gas profiling, compiler diagnostics, and transaction simulation.
Why This Exists
Raw CLI output from tools like Slither and Foundry is noisy, non-deterministic, and often causes LLMs to hallucinate. This server intercepts the output, validates it through Zod schemas, and returns clean JSON that any agent can reliably parse.
Tools
| Tool | Annotations | Description |
|---|---|---|
evm_scan_vulnerabilities |
readOnly, idempotent |
Run Slither analysis. Returns severity-rated findings with extracted code snippets. Supports severityFilter and maxFindings. |
evm_analyze_gas_profile |
readOnly, idempotent |
Run forge test --gas-report. Returns structured per-function gas data. |
evm_compile_and_diagnose |
readOnly, idempotent |
Run forge build. Returns structured compiler diagnostics on failure. |
evm_simulate_transaction |
readOnly, idempotent |
Run cast call. Returns decoded return data or revert reasons. |
evm_inspect_storage_layout |
readOnly, idempotent |
Run forge inspect storage-layout. Returns slot/offset/type per state variable — proxy-collision and packing checks. |
evm_trace_call |
readOnly, idempotent |
Run cast call --trace. Returns structured call tree with gas, call types, events, and revert frames. |
evm_decode_calldata |
readOnly, idempotent |
Decode hex calldata via cast calldata-decode (offline with signature) or cast 4byte-decode (selector lookup). |
evm_run_tests |
readOnly |
Run forge test (optional matchTest/matchPath). Returns per-suite results with gas, fuzz runs, and failure counterexamples. |
evm_toolchain_versions |
readOnly, idempotent |
Report installed/missing status and exact versions of slither, forge, cast. |
Resources
| URI | Description |
|---|---|
evm://patterns/vulnerabilities |
Security vulnerability pattern library |
evm://gas/optimizations |
Gas optimization pattern library |
evm://patterns/arbitrage |
Arbitrage strategy reference |
Prompts
Skill workflows exposed as MCP prompts for clients without native skill support. Each embeds the full SKILL.md workflow.
| Prompt | Args | Description |
|---|---|---|
audit_contract |
contractPath |
Severity-rated security audit (vulnerability-scanning workflow) |
optimize_gas |
projectPath |
Measured gas-optimization pass (gas-optimization workflow) |
analyze_arbitrage |
scenario |
Opportunity ledger net of fees/gas/slippage (arbitrage-analysis workflow) |
Architecture
evm-agent-toolkit/
├── src/
│ ├── mcp/ # MCP server entry point (stdio transport)
│ ├── tools/ # Zod-validated CLI output parsers
│ │ ├── slither.ts # Slither JSON → SanitizedFinding[]
│ │ ├── forge.ts # Forge gas tables → ContractGas[]
│ │ ├── compiler.ts # Forge build errors → CompilerDiagnostic[]
│ │ ├── simulator.ts# Cast call output → SimulatorDiagnostic
│ │ ├── storage.ts # Forge storage layout → StorageEntry[]
│ │ ├── trace.ts # Cast call traces → TraceEvent[]
│ │ ├── decoder.ts # Cast calldata decode → DecodedCalldata
│ │ ├── testrunner.ts # Forge test output → TestSuite[]
│ │ └── versions.ts # Toolchain --version output → ToolVersion
│ ├── rules/ # Agent system prompt injections
│ └── hooks/ # Lifecycle hooks (UserPromptSubmit, Statusline)
├── tests/ # Vitest unit tests for all parsers
├── bench/ # Performance benchmarks
├── evals/ # Agent evaluation framework (vulnerable contracts + eval XML)
├── skills/ # Markdown reference libraries
├── .claude-plugin/ # Claude Code plugin manifest
└── gemini-extension.json # Antigravity plugin manifest
Setup
npm install
npm run build
Agent Configuration
This is a stdio MCP server. It is spawned by the MCP client, not started manually.
Claude Desktop / Cursor:
{
"mcpServers": {
"evm-agent-toolkit": {
"command": "npx",
"args": ["-y", "@0xendale/evm-agent-toolkit"]
}
}
}
Prerequisites: slither, forge, and cast must be installed on the host machine.
Development
npm run dev # Watch mode with tsx
npm run test # Run all unit tests
npm run bench # Run parser benchmarks
npm run build # Compile TypeScript → build/
Performance
Parser throughput (measured on Apple Silicon):
| Parser | Iterations | Time | Per-call |
|---|---|---|---|
| Slither (100 detectors) | 1,000 | ~109ms | ~0.1ms |
| Forge Gas Table | 10,000 | ~32ms | ~0.003ms |
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.