UNPKG

@venly/wallet-mcp

Version:

Production-ready MCP server enabling AI agents to perform Web3 wallet operations through Venly's blockchain infrastructure. Supports 14+ networks including Ethereum, Polygon, Arbitrum, and stablecoin operations.

89 lines (88 loc) 2.43 kB
{ "name": "@venly/wallet-mcp", "version": "1.0.4", "description": "Production-ready MCP server enabling AI agents to perform Web3 wallet operations through Venly's blockchain infrastructure. Supports 14+ networks including Ethereum, Polygon, Arbitrum, and stablecoin operations.", "main": "dist/index.js", "bin": { "venly-mcp": "dist/index.js" }, "type": "module", "files": [ "dist/", "README.md", "LICENSE", "package.json" ], "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:sandbox": "jest --config jest.sandbox.config.js", "test:sandbox:verbose": "jest --config jest.sandbox.config.js --verbose", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "type-check": "tsc --noEmit", "clean": "rimraf dist", "prepare": "npm run build", "prepublishOnly": "npm run clean && npm run build && npm run lint" }, "keywords": [ "mcp", "model-context-protocol", "venly", "web3", "blockchain", "wallet", "cryptocurrency", "defi", "ethereum", "polygon", "stablecoin" ], "author": "Venly", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "@venly/connect": "^2.8.0", "axios": "^1.6.0", "dotenv": "^16.3.0", "jsonwebtoken": "^9.0.2", "node-cron": "^3.0.3", "rate-limiter-flexible": "^4.0.0", "winston": "^3.11.0", "zod": "^3.22.0" }, "devDependencies": { "@eslint/js": "^9.30.1", "@types/jest": "^29.5.0", "@types/jsonwebtoken": "^9.0.5", "@types/node": "^22.10.2", "@types/node-cron": "^3.0.11", "@typescript-eslint/eslint-plugin": "^8.18.1", "@typescript-eslint/parser": "^8.18.1", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.5.1", "glob": "^11.0.0", "jest": "^29.7.0", "prettier": "^3.1.0", "rimraf": "^6.0.1", "ts-jest": "^29.1.0", "tsx": "^4.6.0", "typescript": "^5.7.2" }, "engines": { "node": ">=22.0.0" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/Venly/wallet-mcp.git" }, "bugs": { "url": "https://github.com/Venly/wallet-mcp/issues" }, "homepage": "https://github.com/Venly/wallet-mcp#readme" }