Skip to main content
Run this command in your terminal:
claude mcp add agentcash --scope user -- npx -y agentcash@latest
The --scope user flag makes AgentCash available in all your Claude Code sessions, not just the current project.

Verify installation

Start a Claude Code session and ask:
What is my AgentCash balance?
Claude should call the get_balance tool and return your total balance. If you need deposit links or network-specific wallet addresses, it should call list_accounts.

Project-scoped installation

To install AgentCash for a specific project only, omit the --scope flag:
claude mcp add agentcash -- npx -y agentcash@latest
This writes to .claude/settings.local.json in your project directory.

Options

You can pass flags to AgentCash after the -- separator:
claude mcp add agentcash --scope user -- npx -y agentcash@latest --verbose
FlagDescription
--verbose / -vEnable debug output on stderr
--quiet / -qSuppress all stderr output
--devUse development endpoints (localhost)