The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Agent Guardrail listing page.
A policy firewall for AI agent tool calls.
Your agent wants to run a shell command, send an email, or move money. Guardrail checks that request against rules you wrote, before it happens, and either lets it through, asks a human, or blocks it — with a plain- English reason every time.
Or pip install guardrail-mcp gives you a guardrail
command directly — same output, no repo checkout required (falls back to
the policy bundled in the package if you don't point --policy at your
own file):
That's it — no server, no account, no API key. policies/default.yaml is
the file that decided this; open it and change the numbers to match your
own rules.
Most "AI agent security" projects (including an earlier project of mine) lean on statistical risk scores computed from data nobody can actually verify at build time — wallet age, "reputation," contract "risk" — which either requires paid data feeds you don't have yet, or quietly becomes mock data pretending to be real. Fine for prototyping, dishonest to ship.
Guardrail only makes claims it can back up. Every check is a deterministic rule — a blocklist entry, a regex match, a numeric cap, a rate limit — evaluated against a policy file you write and can audit yourself, backed by a real, persistent audit log (SQLite) you can query. Nothing here pretends to know something it doesn't.
It's also not blockchain-specific. Shell execution, email, HTTP requests, file deletion, database writes, crypto transactions — same engine, same policy file, same rules.
Shown above. No setup, instant feedback while you write rules.
mcp_server.py) — the easy on-ramp, advisoryExposes guardrail_check, guardrail_record_outcome, and
guardrail_agent_history as MCP tools any MCP-compatible agent (Claude
Desktop, Claude Code, custom MCP clients) can call.
Then tell your agent (in its system prompt) to always call
guardrail_check before spending money, deleting data, messaging someone
externally, or running code.
Be clear-eyed about its limit: like any MCP tool, nothing stops the calling model from just not invoking it. This only helps if the agent is instructed to always check first — for a guarantee it can't skip, see #3.
guardrail.decorator.enforce — the real guaranteeWraps the actual Python function that performs a tool's side effect. The check runs in your code, before that function executes — the model never gets a chance to call the real function directly.
Use this if you're building your own agent loop (LangChain, CrewAI, a
custom MCP host, a Slack bot with tool access). Run python3 examples/example_agent_usage.py to see it block a real function call.
guardrail.mcp_enforced_server.EnforcedGuardrailMCPServer — the real guarantee, over MCPThe MCP server in #2 above is honest about being advisory: the model
gets a guardrail_check tool, but nothing stops it from calling the
actual tool (exposed by some other MCP server, or by the model's own
direct access) without checking first, or checking one thing and doing
another. If the model talks to your infrastructure only over MCP - no
Python decorator possible - this is the same #3 guarantee for that case:
the operator registers real action executors (the code that holds real
credentials and performs the real side effect) as the only way the
model can invoke that action at all.
The model is given exactly one MCP tool named wallet.transfer - there
is no separate, unguarded way to move funds through this server. A BLOCK
decision means do_transfer never runs. Both this and enforce() share
one implementation of "check, maybe route WARN to a human, run only if
not blocked, report the real outcome back" (guardrail/enforcement.py) -
not two independently-maintained copies of the same guarantee.
on_warn is the hook — Guardrail ships two ready-made implementations:
Local web UI (guardrail/confirmation/web_ui.py) — a tiny built-in
server (stdlib only, no Flask) with Approve/Reject buttons. The wrapped
function blocks until someone clicks one, or times out (fails closed —
timeout means reject, not "allow by default").
Try it live: python3 examples/example_web_confirmation.py, then open
http://localhost:8787.
Terminal prompt (guardrail/confirmation/cli_ui.py) — for scripts and
local testing where a browser is overkill:
Neither is required — on_warn is just a function (decision) -> bool,
so a Slack message, a ticket, or anything else you already use works too.
Policies are plain YAML — see policies/default.yaml for a real, working
starting point (11 confirmation-gated tools, 10 destructive-pattern
checks, numeric caps, domain rules, rate limits, all commented).
| Rule type | What it checks |
|---|---|
blocked_tools | Tool names that are never allowed |
confirmation_required_tools | Tool names that always produce WARN |
argument_patterns | Regex against the JSON-serialized call arguments — destructive shell commands, SQL, leaked credentials, path traversal, SSRF, force-pushes, regardless of which tool carries them |
numeric_caps | Per-tool numeric field caps, tighter for agents with no history |
aggregate_caps | A cap shared across several tools, tracked as one running total per agent — see below |
domain_rules | Allow/deny lists on a URL or email-recipient field, per tool |
rate_limits | Sliding-window call limits per (agent, tool), backed by SQLite |
numeric_caps limits each tool independently — wallet.transfer capped
at 1000/day and wallet.approve capped at 1000/day separately means an
agent using both can still move 2000/day combined. aggregate_caps
closes that: every tool listed in the same group draws from one shared
running total, e.g.
Only confirmed spend counts toward the total: a BLOCKed request never
adds anything, and a request that's provisionally recorded (because its
own check passed) is refunded if the real action later turns out not to
have succeeded — engine.record_outcome(request_id, "error"), called
automatically by both enforce() and the enforced MCP server (they
share one implementation of this, guardrail/enforcement.py) when the
real executor raises, or when a WARN a human rejects results in a
BlockedActionError. Real enforcement of this therefore has the same
caveat as everything else that depends on record_outcome being called:
it works fully under enforce() and the enforced MCP server (see
below); under the advisory-only MCP server (#2 above), a
provisionally-recorded amount just stays recorded, since nothing ever
reports back whether the action actually happened. See
guardrail/storage/aggregate_spend.py's module docstring for the full
picture.
No code changes needed to adjust any of this — edit the YAML, restart the process (or the MCP server).
134 tests: rule evaluation, the full engine pipeline (real SQLite-backed
rate limiting, aggregate spend tracking, and audit persistence), the
enforce decorator and the enforced MCP server (both proving a BLOCK
genuinely prevents the real action from running, sharing one
implementation of that guarantee), the advisory MCP server's JSON-RPC
handling, the confirmation web UI over real HTTP requests against a
live server, and a dedicated suite that checks the shipped
policies/default.yaml — not just synthetic test policies — actually
catches what it claims to.
AuditLog redacts values whose key looks sensitive (password,
api_key, authorization, ...) and a couple of high-confidence value
shapes (PEM private key blocks, JWT-shaped strings) regardless of key
name, recursing into nested dicts/lists - see
guardrail/storage/redaction.py for exactly what is and isn't caught,
and why general-purpose entropy heuristics were deliberately left out
(too many false positives on ordinary UUIDs/hashes). Pass
AuditLog(redact=False) to store arguments as-submitted, or
extra_sensitive_keys={...} to redact additional field names specific
to your tools.argument_patterns for
whatever your agents actually touch.127.0.0.1 by
design (not exposed on the network), but anyone with local access to
that port can approve/reject. Fine for a single developer's machine;
put it behind your own auth if multiple people share the host.None of these are mocked or faked — they're just not built yet, and they're the honest next steps if you adopt this.
See PUBLISHING.md for a concrete checklist: MCP directories to submit
to, what a listing needs, and what "done" looks like.
Same author, same principle applied elsewhere: