{ "name": "monad-mcp", "version": "0.2.1", "mcpName": "io.github.pareen/monad-mcp", "description": "MCP server for the Monad blockchain — balances, transfers, swaps, lending, staking, bridging & x402 payments for AI agents, with Privy-backed signing and session keys.", "license": "MIT", "author": "Pareen Lathia", "homepage": "https://pareen.github.io/monad-mcp", "repository": { "type": "git", "url": "git+https://github.com/pareen/monad-mcp.git" }, "bugs": { "url": "https://github.com/pareen/monad-mcp/issues" }, "keywords": [ "monad", "mcp", "model-context-protocol", "blockchain", "web3", "evm", "defi", "privy", "ai-agents", "viem", "claude", "wallet" ], "type": "module", "engines": { "node": ">=20.10.0" }, "bin": { "monad-mcp": "./dist/index.js" }, "main": "./dist/index.js", "exports": { ".": "./dist/index.js", "./server": "./dist/server.js", "./plugins": "./dist/plugins/index.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc -p tsconfig.build.json", "prepublishOnly": "npm run build && npm run test", "dev": "tsx watch --env-file-if-exists=.env src/index.ts", "dev:http": "tsx watch --env-file-if-exists=.env src/server-http.ts", "start": "node --env-file-if-exists=.env dist/index.js", "start:http": "node --env-file-if-exists=.env dist/server-http.js", "test": "vitest run", "test:watch": "vitest", "test:integration": "node --env-file-if-exists=.env node_modules/.bin/vitest run --config vitest.integration.config.ts", "lint": "biome check src tests", "lint:fix": "biome check --write src tests", "typecheck": "tsc --noEmit", "format": "biome format --write src tests", "e2e:create-user": "node --env-file=.env --import tsx scripts/create-test-user.ts", "e2e:transfer": "node --env-file=.env --import tsx scripts/e2e-transfer.ts", "e2e:session-keys": "node --env-file=.env --import tsx scripts/e2e-session-keys.ts", "e2e:stdio": "node --env-file=.env --import tsx scripts/e2e-stdio.ts", "verify:privy": "node --env-file=.env --import tsx scripts/verify-privy.ts", "bootstrap:auth-key": "node --env-file-if-exists=.env --import tsx scripts/bootstrap-auth-key.ts" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "@privy-io/node": "^0.19.0", "express": "^4.21.2", "pg": "^8.21.0", "viem": "^2.30.0", "zod": "^3.23.8" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/express": "^5.0.0", "@types/node": "^22.10.5", "@types/pg": "^8.20.0", "tsx": "^4.19.2", "typescript": "^5.7.2", "vitest": "^4.1.8" } }