mcp-guard
MCP server: redacts secrets from tool results, defends against prompt injection, and blocks agent writes to sensitive paths.
Documentation
mcp-guard π‘οΈ
The local privacy firewall, prompt-injection shield, secret sanitizer, and token compressor for AI coding agents.
A zero-dependency security proxy for Model Context Protocol (MCP) servers.

mcp-guard is an ultra-fast, zero-dependency Go binary that sits transparently between your editor (Claude Code, Cursor, VS Code, Copilot) and any Model Context Protocol (MCP) server β over stdio or HTTP/SSE.
It ensures your API keys, database credentials, and protected paths (~/.ssh, .env, .git) are never leaked to cloud LLMs, that malicious content cannot hijack your agent, and that autonomous tool execution cannot touch what it shouldn't β all while trimming token spend.
π‘ Why mcp-guard?
When AI agents run tools like @modelcontextprotocol/server-filesystem or postgres-mcp, they read raw files and query results straight off your machine. Three things go wrong:
- Secrets leak. A file with AWS keys, JWTs, or DB passwords gets shipped verbatim to a cloud LLM.
- Agents get hijacked. A file or web page can carry hidden instructions β invisible Unicode or "ignore all previous instructions" β that the model obeys (prompt injection / tool poisoning).
- Agents overreach. An autonomous agent overwrites
~/.ssh/authorized_keys, pipescurl β¦ | bash, or reads 100 files in a burst.
mcp-guard runs locally and fixes all three without breaking agent execution:
- π Zero-Trust I/O Inspection β intercepts both requests and responses on every transport.
- β‘ Zero-Dependency Go Binary β pure standard library, sub-millisecond overhead.
- π Recoverable Guardrail Errors β returns structured
isError: trueresults so agents self-correct instead of crashing. - π Visible Value β a session summary shows exactly what it protected and how many tokens/dollars it saved.
π― Threat Model β what this does and doesn't replace
mcp-guard is defense-in-depth for the agent boundary, not a replacement for good security hygiene. Being precise about that matters more than sounding impressive.
What it addresses
| Risk | How mcp-guard handles it |
|---|---|
| Sensitive data leaving your machine when an agent reads a file or query result | Redacted before it reaches the model |
| Instructions injected into content your agent consumes (files, web pages, tool descriptions) | Hidden Unicode stripped, directives neutralized |
| An agent writing to paths it was never meant to touch | Blocked, including via ../ traversal and symlinks |
| A runaway or compromised agent enumerating your filesystem | Rate-limited, read-bursts flagged |
| No record of any of the above | Every action audited to stderr (text or JSON Lines) |
What it explicitly does not replace
- Short-lived credentials. If you can use STS / OIDC federation / SSO, do that first β it is the stronger control. Rotation shrinks the blast radius;
mcp-guardreduces the chance of disclosure in the first place. They solve different halves, and the credential fix is the more important one. - A secrets manager or least-privilege IAM. A key that was never on disk cannot be read off disk.
- Reviewing what your agent actually does. Guardrails constrain the blast radius; they do not make an unreviewed agent trustworthy.
Known limitations β read these before relying on it
- Detection is heuristic. Named-pattern secret matching is high-precision and masks by default; the entropy catch-all is lower-precision (it fires on integrity hashes and base64 fixtures) so it is audit-only by default and only masks when you opt in. Injection detection is signature-based. A novel credential format or a carefully-worded injection will get through β treat it as a layer, not a guarantee.
- It only sees traffic that flows through it. An MCP server that makes its own outbound network calls (a
fetch-style server, telemetry, a phone-home) is invisible tomcp-guard. It secures the clientβserver channel, not the server's own egress. - Request-side secret scanning warns, it does not block. Some tools legitimately need credentials in their arguments, so blocking by default would break them.
- Compression can alter text. It is off by default and skips read-for-edit tools, because rewriting a file the agent is about to patch corrupts the diff.
- It does not authenticate the MCP server. A malicious server can still return wrong (if sanitized) answers. Injection defense reduces that risk; it does not eliminate it.
If you find a case where a real secret or injection payload slips through, that is a bug worth opening an issue for β false negatives and false positives are both regressions.
ποΈ Architecture
βββββββββββββββββββββββββββ ββββββββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
β β request β mcp-guard β request β β
β Editor / MCP Client βββββββββββΊβ ββββββββββββββββββββββββββββββββ βββββββββββΊβ MCP Server β
β β β β β guardrails Β· shell block β β β (filesystem, postgres, β
β (Claude Code / Cursor β β β rate-limit Β· req-secrets β β β github, http, β¦) β
β / VS Code / Copilot) ββββββββββββ€ β β redact Β· entropy Β· inject β ββββββββββββ€ β
β β response β β defense Β· compression β β response β β
βββββββββββββββββββββββββββ β ββββββββββββββββββββββββββββββββ β βββββββββββββββββββββββββββ
β stdio Β· HTTP / SSE Β· audit β
ββββββββββββββββββββββββββββββββββββββ
β¨ Features
1. π Secret & Credential Redaction (Server β Client)
Scans every string in a tool result β including structuredContent mirrors and tool descriptions β for 12+ credential formats before they reach the LLM:
- Cloud & AI keys: AWS (
AKIAβ¦), Anthropic, OpenAI, Stripe, Google, Slack, GitHub PATs. - Database URIs: masks the password in
postgres://user:pass@host,mongodb+srv://,redis://:pass@hostβ even passwords containing@. - Private keys & JWTs: full-block masking for RSA/PEM keys and Bearer tokens.
- π High-entropy catch-all (audit-only by default): a Shannon-entropy pass flags unknown-format generated secrets that match no named pattern, using a character-class discriminator to avoid git SHAs, UUIDs, and file paths. Because the heuristic also fires on integrity hashes, base64 fixtures, and signed URLs, it reports by default (logging the detector and byte offsets) and only masks when you opt in with
--entropy-maskor--profile strict. This keeps it from silently corrupting otherwise-valid structured data.
# Before mcp-guard:
AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
DATABASE_URL=postgres://admin:P@ssw0rd123!@db.internal:5432/prod
SESSION=nQ7wLp4sZa1cFd8gHj0tYuXk9mR2vB3E
# After mcp-guard:
AWS_ACCESS_KEY_ID=[REDACTED:aws-access-key]
DATABASE_URL=postgres://admin:[REDACTED:uri-credentials]@db.internal:5432/prod
SESSION=[REDACTED:high-entropy] # entropy match β masked under --entropy-mask / --profile strict;
# audit-only (logged, not masked) by default
2. 𧬠Prompt-Injection & Tool-Poisoning Defense π
Content coming back from a server (file bodies, web pages, even a malicious server's own tool descriptions) can carry instructions aimed at your agent. mcp-guard neutralizes both vectors:
- Hidden Unicode β strips invisible "tag" characters (
U+E0000block used to smuggle invisible ASCII), bidirectional-override controls, and zero-width spaces. Legitimate script/emoji joiners are preserved. - Injection directives β high-signal phrases like "ignore all previous instructions", "do not tell the user", or "reveal your system prompt" are replaced with a visible
[mcp-guard: neutralized-injection]marker (or detect-only, your choice).
3. π‘οΈ Directory Guardrails & Write Protection (Client β Server)
Blocks agents from modifying protected paths β through relative traversal (../.ssh) and symlink escapes π (a project/data β ~/.ssh link is resolved and caught):
- Protected directories (anywhere in the path):
~/.ssh,.aws,.gnupg,.kube,.git,.env* - Sensitive files:
id_rsa,id_ed25519,authorized_keys,.npmrc,.netrc,.pypirc,.dockercfg - Shell-script blocking: refuses
*.sh/*.ps1,bash -c, andcurl β¦ | shpatterns by default. - π Optional sensitive-read blocking: hard-block reads of protected paths (default: allow the read and redact its contents instead).
4. π¦ Exfiltration & Anomaly Guardrails π
A behavioral layer on top of per-call checks:
- Rate limiting β throttle runaway or compromised agents past a calls-per-minute cap.
- Read-burst detection β warns on a sudden spike of distinct file reads (a classic bulk-exfiltration signature).
- Outbound secret scanning β warns when a tool call's arguments carry secret-shaped data, so a key the agent just read can't silently be forwarded to a phone-home server unnoticed.
5. β‘ Context Token Compression (Opt-In)
Strips redundant comments and whitespace to save context-window capacity, with a code-aware token estimator for accurate accounting.
Compression automatically skips read-for-edit tools (
read_file,get_file_contents) to preserve exact diff boundaries for safe file editing.
6. π Session Summary & Structured Audit π
- On exit (and on
SIGUSR1) mcp-guard prints a summary: secrets redacted by type, writes/reads/shell blocked, injections neutralized, tokens saved, and an estimated$saved. - All activity streams to stderr as human text or JSON Lines (
--log-format json) for SIEM ingestion. stdout carries only the MCP protocol.
mcp-guard session summary
secrets redacted 4
aws-access-key 1
uri-credentials 1
high-entropy 2
writes blocked 1
injections neutralized 3
tokens saved 1840
est. cost saved $0.0055
7. ποΈ Policy Profiles & Hot Reload π
- Profiles apply per-server strictness in one flag:
--profile strict|standard|permissive(e.g. lock down a shell server, relax a read-only docs server). - Hot reload β send
SIGHUPto re-read the config and swap policy live, without dropping the agent connection.
π Installation
Prebuilt binary (no Go toolchain required) β grab it from the latest release:
# macOS (Apple Silicon) β swap darwin_arm64 for your platform
curl -sSL https://github.com/sainitish1609/mcp-guard/releases/latest/download/mcp-guard_darwin_arm64.tar.gz | tar xz
sudo mv mcp-guard /usr/local/bin/
With Go:
go install github.com/sainitish1609/mcp-guard/cmd/mcp-guard@latest
From source:
git clone https://github.com/sainitish1609/mcp-guard.git
cd mcp-guard
go build -o mcp-guard ./cmd/mcp-guard
Builds for macOS, Linux, and Windows (amd64 + arm64). Every protection works on all
platforms; the SIGHUP/SIGUSR1 signal hooks are Unix-only, and the end-of-session
summary still prints on exit everywhere.
βοΈ Configuration & Integration
Claude Code
Wrap any standard MCP server command using mcp-guard --:
claude mcp add postgres -- mcp-guard --profile strict --max-tokens 4000 -- npx -y @modelcontextprotocol/server-postgres
Cursor / VS Code (.vscode/mcp.json)
{
"mcpServers": {
"filesystem": {
"command": "mcp-guard",
"args": [
"--redact-secrets",
"--scan-injection",
"--block-shell",
"--",
"npx",
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/username/projects"
]
}
}
}
π HTTP / SSE (remote servers)
Protect a remote MCP server that speaks Streamable-HTTP/SSE β same pipeline, no child process:
mcp-guard --profile strict --http-listen :8080 --http-upstream https://my-mcp-host.example/mcp
Point your client at http://localhost:8080 and every JSON and SSE message is inspected in flight.
π Flag Reference
| Flag | Default | Description |
|---|---|---|
--profile | (none) | Policy preset: strict | standard | permissive |
--redact-secrets | true | Mask API keys, tokens, and database passwords in results |
--entropy-scan | true | Flag high-entropy tokens matching no known pattern (audit-only unless --entropy-mask) |
--entropy-mask | false | Mask entropy findings instead of just auditing them (noisier: hashes, base64, signed URLs) |
--scan-injection | true | Strip hidden Unicode & neutralize prompt-injection directives |
--neutralize-injection | true | Rewrite detected directives (off = detect + log only) |
--scan-requests | true | Warn when outbound tool-call arguments contain secrets |
--block-shell | true | Block execution of shell scripts in exec-like tools |
--block-sensitive-reads | false | Block reads of protected paths (default: allow + redact) |
--rate-limit N | 0 | Max tool calls/min before throttling (0 = disabled) |
--annotate-tools | true | Append policy notices to tools/list so agents know boundaries |
--compress | false | Strip comments and blank lines from context (safe tools only) |
--max-tokens N | 0 | Approximate token budget cap per result block (0 = unlimited) |
--protect-paths | (defaults) | Comma-separated protected paths (overrides defaults) |
--protect-names | (defaults) | Comma-separated protected path segments (overrides defaults) |
--allow-shell | (none) | Comma-separated allow-list substrings for shell commands |
--stats | true | Print a session summary on exit and on SIGUSR1 |
--price-per-1k | 0.003 | USD per 1K tokens for the cost-saved estimate |
--log-level | info | Verbosity: silent | error | info | debug (stderr) |
--log-format | text | Log format: text | json (JSON Lines) |
--dry-run | false | Log events without mutating the stream |
--http-listen | (none) | Run as an HTTP/SSE proxy on this address (e.g. :8080) |
--http-upstream | (none) | Upstream MCP server URL for HTTP/SSE mode |
--config | (none) | Path to a JSON config file (optional) |
Signals: SIGHUP reloads config live Β· SIGUSR1 prints an interim session summary.
π§ͺ Testing & Verification
# Run unit and integration tests
go test ./... -v
# Run static analysis
go vet ./...
Try it end-to-end against a real server:
printf '%s\n%s\n' \
'{"jsonrpc":"2.0","id":0,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"x","version":"1"}}}' \
'{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"read_text_file","arguments":{"path":"/path/to/a/.env"}}}' \
| mcp-guard --profile strict -- npx -y @modelcontextprotocol/server-filesystem /path/to
π License
Distributed under the MIT License. See LICENSE for details.