{"_id":"@agent-pay/mcp","name":"@agent-pay/mcp","dist-tags":{"latest":"2.0.0"},"versions":{"2.0.0":{"name":"@agent-pay/mcp","version":"2.0.0","description":"MCP server for provisioning paid developer services — starting with Akash compute","type":"module","main":"dist/index.js","bin":{"agent-pay":"dist/cli.js"},"scripts":{"build":"tsc","start":"node dist/index.js","dev":"tsx src/index.ts","setup":"tsx src/cli.ts setup","prepublishOnly":"npm run build"},"keywords":["mcp","claude","akash","usdc","compute","agent","walletconnect"],"repository":{"type":"git","url":"git+https://github.com/anthropics/agent-pay.git"},"license":"MIT","dependencies":{"@modelcontextprotocol/sdk":"^1.12.1","@walletconnect/sign-client":"^2.17.0","@walletconnect/types":"^2.17.0","qrcode-terminal":"^0.12.0","viem":"^2.21.0"},"devDependencies":{"@types/node":"^22.0.0","@types/qrcode-terminal":"^0.12.2","tsx":"^4.19.0","typescript":"^5.7.0"},"engines":{"node":">=18"},"_id":"@agent-pay/mcp@2.0.0","gitHead":"c68fbffae4d7fd41588013f0001c7588fc343e07","types":"./dist/index.d.ts","bugs":{"url":"https://github.com/anthropics/agent-pay/issues"},"homepage":"https://github.com/anthropics/agent-pay#readme","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-vKfz7Ho+oog4lzZPmYeLRigeFrXcTpmUey3EgxmmE+s1a1HTlVAT4mGkCBBbZPD1klUza6BpMtqHNaKLof2nYA==","shasum":"a26b4814a509971f7b0220cdfe344201e7853a7e","tarball":"https://registry.npmjs.org/@agent-pay/mcp/-/mcp-2.0.0.tgz","fileCount":32,"unpackedSize":117634,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCnipFR3d9FeVQcO7yJCkIBEjvyUZ6qYbJmrxKGRJh6QAIgOXctE4umJJHp8IBzD1goEWgr3gWLdQi3lqfn+MWCJDg="}]},"_npmUser":{"name":"maimond123","email":"maimondavid553@gmail.com"},"directories":{},"maintainers":[{"name":"maimond123","email":"maimondavid553@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/mcp_2.0.0_1769932242251_0.4106320854137251"},"_hasShrinkwrap":false}},"time":{"created":"2026-02-01T07:50:42.060Z","2.0.0":"2026-02-01T07:50:42.408Z","modified":"2026-02-01T07:50:42.662Z"},"maintainers":[{"name":"maimond123","email":"maimondavid553@gmail.com"}],"description":"MCP server for provisioning paid developer services — starting with Akash compute","homepage":"https://github.com/anthropics/agent-pay#readme","keywords":["mcp","claude","akash","usdc","compute","agent","walletconnect"],"repository":{"type":"git","url":"git+https://github.com/anthropics/agent-pay.git"},"bugs":{"url":"https://github.com/anthropics/agent-pay/issues"},"license":"MIT","readme":"# agent-pay\n\nMCP server that lets AI agents provision and pay for cloud compute on [Akash Network](https://akash.network) using USDC.\n\n## Install\n\n```bash\nnpm install -g agent-pay\n```\n\nOr from source:\n\n```bash\ngit clone https://github.com/maimond123/verifiable-agents.git\ncd verifiable-agents/agent-pay\nnpm install && npm run build\n```\n\n## Configure\n\nAdd to your Claude Code project settings (`.claude/settings.local.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"agent-pay\": {\n      \"command\": \"npx\",\n      \"args\": [\"agent-pay\"],\n      \"env\": {\n        \"AGENT_PAY_GATEWAY_URL\": \"https://your-gateway-url.com\",\n        \"AGENT_PAY_GATEWAY_API_KEY\": \"your-api-key\",\n        \"AGENT_PAY_WALLET_KEY\": \"your-hex-private-key\",\n        \"AGENT_PAY_NETWORK\": \"base-sepolia\"\n      }\n    }\n  }\n}\n```\n\nOr for Claude Desktop (`claude_desktop_config.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"agent-pay\": {\n      \"command\": \"npx\",\n      \"args\": [\"agent-pay\"],\n      \"env\": {\n        \"AGENT_PAY_GATEWAY_URL\": \"https://your-gateway-url.com\",\n        \"AGENT_PAY_GATEWAY_API_KEY\": \"your-api-key\",\n        \"AGENT_PAY_WALLET_KEY\": \"your-hex-private-key\",\n        \"AGENT_PAY_NETWORK\": \"base-sepolia\"\n      }\n    }\n  }\n}\n```\n\n## Environment Variables\n\n| Variable | Required | Default | Description |\n|---|---|---|---|\n| `AGENT_PAY_GATEWAY_URL` | Yes | `http://localhost:3000` | URL of the x402-akash-gateway |\n| `AGENT_PAY_GATEWAY_API_KEY` | Yes | — | API key for gateway authentication |\n| `AGENT_PAY_WALLET_KEY` | No | — | Hex private key for USDC payments. Omit for simulated mode. |\n| `AGENT_PAY_NETWORK` | No | `base` | `base-sepolia` (testnet) or `base` (mainnet) |\n\n## Wallet Setup\n\nThe wallet specified by `AGENT_PAY_WALLET_KEY` needs:\n\n- **USDC** on the chosen network (to pay for compute)\n- **ETH** on the chosen network (to pay gas for the ERC-20 transfer)\n\nUSDC contract addresses:\n- Base Sepolia: `0x036CbD53842c5426634e7929541eC2318f3dCF7e`\n- Base Mainnet: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`\n\n## Tools\n\n| Tool | Description |\n|---|---|\n| `provision_compute` | Analyze task, get quotes, pay with USDC, deploy on Akash |\n| `get_compute_quote` | Get pricing from multiple providers (shows wallet balance) |\n| `check_deployment` | Check status of a deployment |\n| `list_deployments` | List all deployments |\n| `stop_deployment` | Stop a running deployment |\n\n## License\n\nMIT\n","readmeFilename":"README.md","_rev":"1-f50a5e8fc79b7187ad3e26c4f1fc9a99"}