pop-pay MCP server adds payment guardrails for Claude Code agents

pop-pay is an MCP server designed specifically for Claude Code users who need their AI agents to handle purchases autonomously without exposing actual credit card numbers. The tool addresses security concerns like hallucination loops, prompt injections, or bad tool calls that could lead to card extraction or unauthorized charges.
How it works
Setup involves three steps:
- Run
pop-launch— starts Chrome with CDP enabled and prints the exactclaude mcp addcommands for your machine - Add the pop-pay MCP server and Playwright MCP (both in one step)
- Add a short block to your
CLAUDE.md
When Claude reaches a checkout page, it calls request_virtual_card(). pop-pay evaluates the intent against your policy, and if approved, injects the card credentials directly into the payment iframe via CDP. Claude only receives a masked confirmation (like ****-****-****-4242) — the raw PAN never enters the context window.
Security features
Security hardening in versions v0.6.0 through v0.6.4 includes:
- Run
pop-init-vault— encrypts your card credentials into~/.config/pop-pay/vault.enc(one-time setup) - Credentials are stored in an AES-256-GCM encrypted vault — no plaintext
.env - The PyPI build compiles the key derivation salt into a Cython extension; the salt never exists as a Python object — only the final derived key does
- SQLite never stores raw card numbers or CVV
- An injection-time TOCTOU guard prevents redirect-to-attacker attacks between approval and injection
Red team testing revealed and fixed three issues: a get_compiled_salt() function leaking the compiled salt (fixed in v0.6.1), strings scanning revealing plaintext salt (patched with XOR obfuscation in v0.6.2), and a downgrade attack path where an agent could delete the .so and force re-encryption with the public salt (blocked by a tamper-evident .vault_mode marker in v0.6.4). Current release is v0.6.17.
Two-layer guardrail system
The system uses two layers of protection:
- Layer 1 (always on): Keyword + pattern engine — catches hallucination loops, prompt injection attempts in the reasoning payload, phishing URLs. Zero API cost, runs locally.
- Layer 2 (optional): LLM semantic evaluation — for fuzzy cases. Uses any OpenAI-compatible endpoint including local models. Layer 2 only runs if Layer 1 passes, avoiding token costs on obvious rejections.
Policy configuration
Users define their own policies with environment variables:
POP_ALLOWED_CATEGORIES=["aws", "github", "stripe"]
POP_MAX_PER_TX=50.0
POP_MAX_DAILY=200.0If Claude tries to buy something outside the allowed list — even with a convincing-sounding reason — it gets blocked.
The developer is seeking feedback from anyone building with Claude Code + MCP, specifically about whether the CDP injection approach holds up on actual sites and what checkout flows might break this kind of DOM injection.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw-Superpowers: A Native Port of Jesse Vincent's Superpowers Framework Without Claude Code Dependency
A Reddit user ported obra/superpowers to OpenClaw with dedicated agents (coding orchestrator, implementer, reviewer) and native commands like sessions_spawn and update_plan, removing Claude Code dependency.

SkyClaw: Rust-Based Autonomous AI Agent Runtime
SkyClaw is an autonomous AI agent runtime built in Rust with a 7.1 MB binary that idles at 14 MB RAM and starts in under one second. It operates on five engineering principles including autonomy, robustness, and brutal efficiency.

StarSteady: AI-Powered Google Review Responses and SMS Requests for Local Businesses
StarSteady is a solo-built SaaS that generates AI-crafted responses to Google/Yelp reviews and sends SMS review requests to customers, starting at $39/month with a 5-response/5-SMS free trial.

Reverse-engineered Claude Code SDK released in four languages
A developer has reverse-engineered Claude Code and created single-file SDKs in Node.js, Python, Go, and Rust with zero dependencies. The tools provide full agent loop with streaming and tool use while using existing Claude Pro/Max subscriptions.