
Agent Wallet Mcp
- 1 repo stars
- Updated July 13, 2026
- Rumblingb/agent-wallet-mcp
Agent Wallet MCP is a MCP server that manages agent wallets and budgets for AI agents.
About
Agent Wallet MCP is a Model Context Protocol server for wallet and budget management aimed at AI agents that spend money on APIs, models, or paid integrations. Developers hitting surprise invoices from autonomous loops can register this server to cap or track usage at the agent level instead of only at the vendor dashboard. Canonical placement is Operate / infra for live budget enforcement; it also helps at Build / agent-tooling when you prototype spend limits, and Grow / analytics when you compare cost per workflow. Registry metadata shows v1.0.0 and the Rumblingb GitHub source. Complexity is intermediate—you connect MCP, define wallet rules, and ensure agents consult the server before expensive calls. It does not replace Stripe billing for your customers; it governs your agents’ operational spend. Works as a complement to audit MCP when you need both what happened and what it cost.
- Agent wallet and budget management exposed as MCP tools
- Targets AI agents that incur API, token, or third-party usage costs
- v1.0.0 from Rumblingb/agent-wallet-mcp alongside agent-audit-mcp
- Fits solo builders productizing agents without building custom billing middleware first
- Finance-oriented MCP server rather than a codegen or SEO skill
Agent Wallet Mcp by the numbers
- Data as of Jul 14, 2026 (Skillselion catalog sync)
claude mcp add AgentWalletMcp -- npx -y Rumblingb/agent-wallet-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | July 13, 2026 |
| Repository | Rumblingb/agent-wallet-mcp ↗ |
What it does
Manage per-agent wallets and budgets over MCP so autonomous tooling stays within spend limits.
Who is it for?
Best when you're running cost-bearing agents via MCP and need simple wallet and budget controls without a custom finance microservice.
Skip if: Static one-off coding chats with negligible spend, or SaaS teams looking for customer subscription billing instead of agent ops budgets.
What you get
After you add the server, agents can operate within defined wallets and budgets so spend stays predictable in production.
- MCP-accessible wallet and budget controls for agents
- Predictable spend boundaries for autonomous runs
- v1.0.0 agent-wallet MCP integration
By the numbers
- Registry version 1.0.0
- GitHub repository id 1235197663 in server metadata
- Described scope: agent wallet and budget management for AI agents
README.md
AgentWallet MCP
Your agent can maintain its own sandboxed spend ledger, enforce monthly budgets on itself, transfer funds to other agents, and generate formal invoices — all without touching your financial accounts.
The wallet is a local numeric ledger (stored in ~/.agentwallet/). It is not connected to any bank, payment processor, or blockchain. Use it to model agent-to-agent accounting and spending limits within your own infrastructure.
What your agent can do
- Create a wallet for any agent ID and fund it with an initial balance
- Check current balance, monthly spend total, and pending transactions at any time
- Deposit and withdraw from any wallet, with automatic budget enforcement on withdrawal
- Transfer between two agent wallets in a single atomic operation — both sides recorded
- Set a hard monthly spending cap: withdrawals and transfers that would exceed it are rejected at the time of the call
- Generate numbered invoice records (
INV-000001, etc.) for agent-to-agent service billing
Installation
Requires: Python 3.10+, mcp package.
pip install mcp
Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agent-wallet": {
"command": "python",
"args": ["/absolute/path/to/agent-wallet-mcp/server.py"]
}
}
}
Cursor — add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"agent-wallet": {
"command": "python",
"args": ["/absolute/path/to/agent-wallet-mcp/server.py"]
}
}
}
Tool Reference
| Tool | Description | Key params |
|---|---|---|
wallet_create |
Create a new wallet for an agent | agent_id (required), initial_balance (default: 0) |
wallet_balance |
Get balance, total spent, monthly budget, and pending count | agent_id |
wallet_deposit |
Add funds to a wallet | agent_id, amount, source |
wallet_withdraw |
Remove funds; rejected if monthly budget would be exceeded | agent_id, amount, destination |
wallet_transfer |
Move funds between two wallets atomically; honors source budget | from_agent_id, to_agent_id, amount, reason |
wallet_transactions |
Recent transaction history, newest first | agent_id, limit (default: 20) |
wallet_set_budget |
Set or remove monthly spending cap (0 = no limit) | agent_id, monthly_budget |
wallet_invoice |
Generate a numbered invoice record between two agents | from_agent_id, to_agent_id, amount, description |
Data Storage
~/.agentwallet/
├── wallets/
│ └── <agent_id>.json # balance, budget, total_spent
├── transactions/
│ └── <agent_id>.json # full transaction history
├── invoices/
│ └── INV-000001.json # invoice records
└── _invoice_counter.json # auto-incrementing invoice number
Budget Enforcement
When monthly_budget > 0, the server rejects any withdrawal or transfer where total_spent + amount > monthly_budget. The check runs synchronously before the balance is modified. Set monthly_budget to 0 to remove the limit.
Pricing
| Plan | Price | Included |
|---|---|---|
| Pro | $19/month | Unlimited wallets, transactions, and invoices |
License
Proprietary — see subscription terms. Source: github.com/Rumblingb/agent-wallet-mcp
Recommended MCP Servers
How it compares
Agent spend and wallet MCP, not an MCP security firewall or skills marketplace.
FAQ
Who is Agent Wallet MCP for?
Developers and small teams deploying agents that trigger paid APIs who want MCP-native budget and wallet management.
When should I use Agent Wallet MCP?
Use it when agents run on schedules or long sessions, before scaling autonomous tool use, or when you need caps per agent role.
How do I add Agent Wallet MCP to my agent?
Register io.github.Rumblingb/agent-wallet-mcp in your MCP client and configure wallet limits following the agent-wallet-mcp GitHub repository setup.