0xgasless-mcp
Version:
MCP server for 0xGasless smart accounts with gasless blockchain operations. Directly connects to Claude Desktop
76 lines (75 loc) • 2.04 kB
JSON
{
"name": "0xgasless-mcp",
"version": "1.0.5",
"description": "MCP server for 0xGasless smart accounts with gasless blockchain operations. Directly connects to Claude Desktop",
"main": "dist/index.js",
"bin": {
"0xgasless-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"blockchain",
"0xgasless",
"gasless",
"smart-account",
"web3",
"ethereum",
"bsc",
"swap",
"defi",
"account-abstraction"
],
"author": {
"name": "21Coder's",
"email": "achihsingh@gmail.com",
"url": "https://github.com/achiit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/achiit/0xgasless-mcp-server.git"
},
"bugs": {
"url": "https://github.com/achiit/0xgasless-mcp-server/issues"
},
"homepage": "https://github.com/achiit/0xgasless-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@0xgasless/agentkit": "^0.0.9",
"@0xgasless/smart-account": "^0.0.13",
"@modelcontextprotocol/sdk": "^0.6.0",
"dotenv": "^16.4.5",
"viem": "^2.22.17",
"tslib": "^2.8.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.0.0"
},
"peerDependencies": {
"node": ">=18.0.0"
}
}