Border Patrol
FreeNot checkedA policy-enforcing MCP gateway that intercepts all tool calls to downstream MCP servers, applying allow/deny/ask rules with human approval and audit logging for
About
A policy-enforcing MCP gateway that intercepts all tool calls to downstream MCP servers, applying allow/deny/ask rules with human approval and audit logging for safe access to dangerous tools.
README
_______________
| BORDER |
| PATROL |
|_______________|
___
(o_o) "HALT! State your business."
<| |\
| |
_| |_
(_) (_)
A policy-enforcing MCP gateway. Your agent connects to one MCP server — border-patrol — and every tool call to every real MCP server behind it gets stopped at the checkpoint and asked the important questions: allow, deny, or "papers, please" (a human has to approve it).
The agent only ever talks to the guard. The dangerous servers are only reachable through the checkpoint. There is no road around it. We checked.
Agent (Claude, Cursor, …)
│ ← sees ONE MCP server: border-patrol
▼
border-patrol ── policy engine: allow / deny / ask ── audit log (JSONL)
│ │
├──► postgres MCP └── approval CLI (you: `border-patrol approve req_42`)
├──► filesystem MCP
└──► shell MCP
Why does this exist
Because one day your agent will decide the users table is "legacy". Because "drop the test database" and "drop the database" are the same sentence to a language model at 2am. Because client-side permission prompts are inconsistent, easy to click through, and written by optimists.
Border-patrol puts enforcement at the protocol layer, in one place you control, with an audit trail of everything the agent did — and, more importantly, everything it tried to do.
Install & run
npm install -g border-patrol-mcp
(From source instead: git clone, npm install, npm run build, and swap border-patrol for node /path/to/dist/cli.js below.)
Create border-patrol.yaml:
servers:
postgres:
command: npx
args: ["-y", "@modelcontextprotocol/server-postgres", "postgres://localhost/mydb"]
filesystem:
command: npx
args: ["-y", "@modelcontextprotocol/server-filesystem", "/home/you/project"]
rules:
# Hard-block DDL. The users table stays. Forever.
- tool: "postgres__query"
match:
args.query: { regex: "(?i)^\\s*(drop|truncate|alter|grant)\\b" }
action: deny
reason: "DDL is forbidden through this gateway"
# Writes need a human to say yes. Once. Per exact call.
- tool: "postgres__query"
match:
args.query: { regex: "(?i)^\\s*(delete|update)\\b" }
action: ask
# No catch-all needed: unmatched calls fall back to `defaults`
# (onUnknown: allow), while tools annotated destructiveHint still
# route to `ask`. An explicit `- tool: "*", action: allow` would
# override that annotation safety net — write one only if you mean it.
Point your MCP client at border-patrol instead of the real servers:
{
"mcpServers": {
"border-patrol": {
"command": "npx",
"args": ["-y", "border-patrol-mcp", "serve", "--config", "/path/to/border-patrol.yaml"]
}
}
}
Works with any MCP client — it's just a standard stdio MCP server with strong opinions.
How the checkpoint works
Every tool from every downstream server is re-exposed as <server>__<tool> (e.g. postgres__query). For each call, the first matching rule wins:
allow— forwarded downstream verbatim. Have a nice day.deny— blocked before it reaches the server. The agent gets an error explaining why, and a lecture it didn't ask for.ask— not executed. The officer appears, the agent gets an approval id, and tells you. You run:border-patrol list # see what's waiting at the checkpoint border-patrol approve req_42 # stamp it. or: deny req_42The agent then retries the exact same call and it goes through — once. Approvals are single-use and bound to the exact arguments, so an approval for
DELETE FROM users WHERE id = 5does not magically also coverWHERE 1=1. Nice try.
When no rule matches, tool annotations from the MCP spec take over: a tool marked destructiveHint: true defaults to ask (configurable via defaults.onDestructiveHint). You get sane protection even for servers you've never written rules for.
Matchers
Rules match on the namespaced tool name (glob: postgres__*) and on argument values via dot-paths:
match:
args.query: { regex: "(?i)^delete\\b" } # "(?i)" prefix = case-insensitive
args.path: { contains: "/etc/" }
args.env: { equals: "production" }
args.input: { notRegex: "(?i)secret" }
All conditions in a rule must match. String arguments are whitespace-normalized before matching (trimmed, runs collapsed), because "D R O P TABLE" is not as clever as the agent thinks it is.
Fail-closed by design
The officer assumes guilt:
- Invalid config or rule regex → refuses to start.
- Downstream server unreachable → its tools simply don't exist. Nothing bypasses the checkpoint.
- Approval timeout → treated as denied.
- Bug in the guard itself → the call is blocked, not forwarded.
Audit log
Every call is appended to .border-patrol/audit.jsonl (path configurable): tool, arguments, decision, reason, outcome, latency. Grep it, tail it, or frame the entry where the agent tried to DROP TABLE users and you caught it.
CLI
border-patrol serve [--config path] run the gateway (what agents connect to)
border-patrol approve <id> stamp the papers
border-patrol deny <id> turn the call around
border-patrol list [--status pending] see who's waiting at the checkpoint
Config resolution: --config flag → $BORDER_PATROL_CONFIG → ./border-patrol.yaml.
Development
npm run build # compile to dist/
npm test # policy engine unit tests
npm run test:e2e # full gateway e2e (allow/deny/approve/retry/audit)
Honest limitations
- The guard is a tripwire, not a vault door. Regex matching can be defeated by determined obfuscation. Pair it with least-privilege credentials downstream (read-only DB roles, sandboxed shells) for real safety. Officer Pat Rollo is vigilant, but he cannot read base64.
- Enforcement only works if border-patrol is the only path. Don't also connect the raw servers directly to the agent. That's a hole in the fence.
- Resources and prompts are not proxied yet (tools only).
- Approval currently happens out-of-band via the CLI; MCP elicitation support is planned for clients that support it.
Roadmap
- MCP elicitation for inline approval prompts (clients that support it)
- Streamable-HTTP transport so border-patrol can run as a shared team checkpoint
- Rate limits / per-session budgets for destructive calls
- SQL-aware matching via a real parser (so the officer can read base64)
- Small web dashboard for approvals and audit browsing
License
MIT. The checkpoint is open source. The checkpoint never closes.
Install Border Patrol in Claude Desktop, Claude Code & Cursor
unyly install border-patrol-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add border-patrol-mcp -- npx -y border-patrol-mcpStep-by-step: how to install Border Patrol
FAQ
Is Border Patrol MCP free?
Yes, Border Patrol MCP is free — one-click install via Unyly at no cost.
Does Border Patrol need an API key?
No, Border Patrol runs without API keys or environment variables.
Is Border Patrol hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Border Patrol in Claude Desktop, Claude Code or Cursor?
Open Border Patrol on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Border Patrol with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
