{
"name": "mcp-ethers-wallet",
"version": "1.1.6",
"description": "A Model Context Protocol server for interacting with Ethereum wallets using Ethers.js",
"author": {
"name": "Dennison Bertram",
"email": "dennison@tally.xyz"
},
"license": "MIT",
"homepage": "https://github.com/crazyrabbitLTC/mcp-ethers-server",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"mcp-ethers-wallet": "build/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"test": "jest --config jest.config.cjs 'src/.*\\.ts$'",
"test:watch": "jest --watch 'src/.*\\.ts$'"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.0.0",
"ethers": "^6.0.0",
"solc": "^0.8.28",
"zod": "^3.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"hardhat": "^2.22.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}