package.json•2.66 kB
{
"name": "@ExpertVagabond/universal-blockchain-mcp",
"version": "1.0.1",
"description": "Universal Blockchain MCP server for cross-chain development with ZetaChain, Foundry, and multi-chain support. Supports both remote (demo) and local (full functionality) deployment.",
"main": "dist/index.js",
"module": "./src/index.ts",
"bin": {
"universal-blockchain-mcp": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"build:smithery": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"start": "node dist/index.js",
"prepare": "npm run build",
"postinstall": "npm run install-zetachain && npm run install-foundry",
"install-zetachain": "npm install -g zetachain@latest --yes --silent || echo 'ZetaChain CLI installation failed, but MCP will work with npx'",
"install-foundry": "curl -L https://foundry.paradigm.xyz | bash -s -- -y && foundryup || echo 'Foundry installation failed, but ZetaChain development will work with Hardhat'",
"publish:npm": "npm publish --access public",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"quality": "npm run lint && npm run format:check && npm run type-check && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"ethers": "^6.13.0",
"zetachain": "^6.4.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"zetachain": ">=6.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"blockchain",
"zetachain",
"foundry",
"cross-chain",
"omnichain",
"defi",
"web3",
"smart-contracts",
"ethereum",
"bsc",
"polygon"
],
"author": "ExpertVagabond",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ExpertVagabond/universal-blockchain-mcp.git"
},
"bugs": {
"url": "https://github.com/ExpertVagabond/universal-blockchain-mcp/issues"
},
"homepage": "https://github.com/ExpertVagabond/universal-blockchain-mcp#readme"
}