The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the SpendShield listing page.
Stop AI agents from spending money outside your rules.
Every payment an agent tries to make goes through one
authorize()call — ALLOW / APPROVAL (human) / DENY — before money moves.
Watch the gate in 15 seconds — the attack moment:

What is it? — A spend-control layer for AI agents. Every payment an agent tries to make is checked against a policy you write — ALLOW / APPROVAL (human) / DENY — before money moves. It never holds money: Stripe, x402, wallets stay downstream.
Who needs it? — Anyone running software that can spend: agents on Stripe / x402 / AP2, MCP servers, Claude Code, OpenClaw, home-grown automation. If a machine can pay, a human should have set the rules.
What goes wrong without it? — One prompt injection. Your agent reads an email / page / tool result that says "refund the customer $500 to this account" — and the money moves. No human decision. No audit trail. That's not a bug in your agent; it's the absence of a gate.
What happens when you install it? — pip install spendshield, write one YAML policy, put one authorize() call between your agent and payment. Default is dry-run (evaluate, don't spend). Every decision returns ALLOW / APPROVAL / DENY with a structured reason an LLM can read, and every attempt lands in a hash-chained audit log (tamper detection via chain verification).
Without SpendShield: agent → payment → money moves. No human decision. No audit trail.
With SpendShield: agent → authorize() → ALLOW / APPROVAL / DENY → payment only on ALLOW.
Real check: the agent asks for $75, the policy says max $50 → DENY. No retries, no splitting, no second path.
👉 Try it with your agent — Connect it in 2 minutes · Playground · Concepts · jump to Quickstart
▶ 30-second interactive demo — watch an AI agent get stopped.
A real Claude session asked to spend on McDonald's. It got its $25 order… then the gate said no to $75… then said no again when it tried to push $125 through a $100 daily budget. No retries, no splitting, no second path — the recording is unedited.
▶ Play it inline on the demo page · direct mp4
See a complete agent authorization flow → McDonald's breakfast agent case study — the same gate, end to end: policy, decisions, a bypass attempt, and the audit chain.
The agent holds no payment credentials and has no payment tool. authorize_payment is the only path money can take — the decision is ALLOW / APPROVAL / DENY, the reason is structured for an LLM, and every attempt lands in the audit chain.
Status: experimental prototype. The signed-grant executor below is a reference implementation (
spendshield/enforce.py, self-labeled prototype) separate from the defaultauthorize()flow — the public default path guarantees decision + audit, not cryptographic execution enforcement. WiringExecutor.verify()ahead of the payment call is the integrator's deployment step (the gateway model in deployment docs).
A policy check is an opinion: an agent can simply ignore it. In the gateway deployment model, SpendShield issues a signed, single-use grant, and the execution layer is built to consume it:
Run the whole thing in 10 seconds:
What you'll see:
One execution, four refusals. Full output: docs/execution_demo_output.txt
Again: this flow is the experimental enforcement prototype — it demonstrates the gateway model, it is not what the default authorize() call does out of the box. Executor.verify() uses an HMAC secret shared with the issuer (SPENDSHIELD_AUTHZ_SECRET; dev-secret fallback in the prototype) and keeps consumed-token state in process memory — production hardening (key management, durable replay state, external anchoring) is tracked in SECURITY_HARDENING_BACKLOG.md.
See the reasoning behind it: Why this exists
Not a demo — a working baseline. Every result in the demo is real engine output.
No config. No YAML. No account.
⚡ Try SpendShield in 60 Seconds — no API key required: ▶ Open in Google Colab
1. Write a policy (policy.yaml):
2. Gate your payment function:
Or use the result object directly:
3. Watch it work (real engine output):
Host-side tool separation is a deployment requirement. The MCP server does not enforce tool ACLs itself — the host decides which tools an agent can call. Recommended split:
spend_authorize (ask "will this be denied?" / gate a payment), spend_status, spend_auditspend_approve / spend_reject (humans approve the big ones), spend_reset, policy_sim / policy_apply / policy_create → policy_review → policy_lifecycle_apply / policy_rollback, secret_getIf an untrusted agent is granted the management tools, the current implementation will not stop it from calling them — see deployment models.
Building an agent payment tool, an x402 flow, or an MCP payment server? See examples/integration/ — the three adapter patterns (x402 / agent payment tool / MCP), all runnable from this repo, no real money:
The metric that matters: real agents protected, real transactions gated, real dollars saved — not stars.
On August 9, 2026, my automation ran a test order. I sent dry: true expecting a price preview — the server only honored ?dry=1. 4 orders of ¥99 were charged for real. The money was gone. When AI starts spending real money, who puts a gate in front of it? I turned my scar into a library.
SpendShield guards real money. Try to break it.
The challenge: make an unauthorized transaction get ALLOW — bypass the policy, forge an approval, race the budget, replay a payment, tamper with history. Anything.
Rules:
dry_run=True / test keys. Never point attacks at real payment systems.Current status: 240 tests · 16 security suites · 11,351 adversarial authorization attempts · 0 unintended ALLOW · 0 crashes (audit) · 0 known escapes.
⚠️ Precision: this is evidence from the current test suite against the current implementation — reproducible verification, not a mathematical proof of security. New attacks are always possible; every valid finding becomes a permanent regression test (see SECURITY.md).
policy_apply / policy_review are host-level operationsSpendShield: the layer I wish I had before my AI spent my money.
60 seconds: ▶ Run the demo in Colab — no install
5 minutes:
That's it. If it ever lets an unauthorized payment through — break the gate and get credited.