package.jsonā¢917 B
{
"name": "evm-mcp",
"version": "1.0.0",
"type": "module",
"bin": {
"evm-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"test": "jest",
"test:watch": "jest --watch",
"start": "node build/index.js"
},
"files": [
"build"
],
"main": "index.js",
"keywords": [
"ethereum",
"evm",
"blockchain",
"mcp",
"rpc",
"json-rpc",
"web3",
"node-provider"
],
"author": "",
"license": "ISC",
"description": "EVM MCP Server - Comprehensive Ethereum Virtual Machine RPC interface for any node provider",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"ethers": "^6.13.0",
"zod": "^3.25.75"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^24.0.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}