package.json•1.76 kB
{
"name": "@mcpdotdirect/evm-mcp-server",
"module": "src/index.ts",
"type": "module",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
"bin": {
"evm-mcp-server": "./bin/cli.js"
},
"main": "build/index.js",
"files": [
"build/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir build --target node",
"build:http": "bun build src/server/http-server.ts --outdir build --target node --outfile http-server.js",
"dev": "bun --watch src/index.ts",
"start:http": "bun run src/server/http-server.ts",
"dev:http": "bun --watch src/server/http-server.ts",
"prepublishOnly": "bun run build && bun run build:http"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"prettier": "3.5.3"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"viem": "^2.23.9",
"zod": "^3.24.2"
},
"keywords": [
"mcp",
"model-context-protocol",
"evm",
"blockchain",
"ethereum",
"web3",
"smart-contracts",
"ai",
"agent"
],
"author": "Etheral <etheral.eth.dev@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mcpdotdirect/evm-mcp-server"
},
"bugs": {
"url": "https://github.com/mcpdotdirect/evm-mcp-server/issues"
},
"homepage": "https://github.com/mcpdotdirect/evm-mcp-server#readme",
"publishConfig": {
"access": "public"
}
}