Skip to main content

Agent Guard

PyPI Tests License: MIT

A runtime security proxy for MCP (Model Context Protocol) agent tool calls.

Agent Guard sits between your MCP client (Claude Desktop, Claude Code, or any MCP-compatible client) and your real MCP servers. It checks every tool call before it runs and every result on the way back, then allows, warns, or blocks - and writes down what it did.

It looks for secrets in transit, destructive commands, malicious arguments, prompt-injection markers, and data from a sensitive source escaping to an external one. Full list under Detections.

Every call is logged to ~/.agent-guard/audit.log as JSONL with a risk score and verdict. The log is safe for concurrent writers (cross-process file lock) and rotates at 50 MB to one prior file (audit.log.1).

Each entry also carries a result_hash (sha256 of the tool's output, so a record can reference a result without storing it) and an optional parent_run_id, which groups the calls belonging to one run:

AGENT_GUARD_RUN_ID=run-42 agent-guard run --config agent-guard.yaml

Or pass --run-id. The environment variable is usually the practical one, since your MCP client is what launches the proxy.

What this looks like in practice

Say your agent has a wiki server and a database server connected, and you ask it to tidy up some onboarding docs and check today's signups:

What the agent does Agent Guard
Reads a normal wiki page allows it, logs it
Reads a page containing "ignore previous instructions…" warns - a wiki is untrusted input, anyone can edit it
Edits a page, pasting in an API key it found in your config blocks - the key never lands on the wiki
Edits a page using a password it read from your ops runbook blocks - it remembers where that value came from
Runs SELECT COUNT(*) FROM customers WHERE … allows it, logs it
Runs DELETE FROM customers with no WHERE blocks

Nobody had to be malicious for the two blocked edits to happen. An agent pulling a credential into a doc it is writing is just an agent being thorough - which is exactly why it goes unnoticed.

Most of the time nothing fires and you get an audit trail. The value shows up on the one call that goes sideways.

Which tools count as somewhere data can escape to is up to you: wiki__* edits are not treated as an exfiltration route by default, so add them to external_sinks if your wiki is shared. See Configuration.

Install

pip install mcp-agent-guard

The distribution is mcp-agent-guard (the shorter name belongs to an unrelated project); the command and the import package are both agent-guard / agent_guard.

To work on it instead:

git clone https://github.com/mmbinumer/agent-guard
cd agent-guard
pip install -e ".[dev]"

Windows note: if agent-guard isn't found after install, pip installed the script to a Scripts directory that isn't on your PATH (pip will print a warning showing the path). Add that directory to your PATH and open a new terminal, or invoke it as python -m agent_guard <command>.

Quick start

  1. Copy agent-guard.example.yaml to agent-guard.yaml and list your downstream MCP servers under servers:.
  2. Point your MCP client at Agent Guard instead of at your servers directly - see Client compatibility for the config shape. The client starts the proxy itself; you do not need to run it by hand.
  3. Run agent-guard tail --no-follow to see recent activity, or agent-guard report for a summary.
  4. If a legitimate call gets blocked, set mode: audit-only in agent-guard.yaml to downgrade all blocks to warnings while you tune the config, or run agent-guard kill to halt everything immediately.

Client compatibility

Agent Guard is not Claude-specific - it just speaks MCP. The rule is simple:

It works with any MCP client that launches MCP servers locally.

Wherever your client lists MCP servers, list Agent Guard instead, and move your real servers into its YAML. The file location differs per client (claude_desktop_config.json, .cursor/mcp.json, and so on) but the shape is the same:

{
  "mcpServers": {
    "agent-guard": {
      "command": "agent-guard",
      "args": ["run", "--config", "/absolute/path/to/agent-guard.yaml"]
    }
  }
}

That covers Claude Desktop, Claude Code, Cursor, Windsurf, Cline, Continue, Zed, Goose, VS Code, and the OpenAI Agents SDK. The model behind the client is irrelevant - GPT or Claude, it is the same protocol.

Verify it is actually in the path. Ask the client what tools it has: they should be prefixed with your server names (fs__read_file, not read_file). Then confirm calls are being recorded:

agent-guard tail --no-follow

Entries appearing there is the proof. This beats reading docs, since MCP support across these tools changes quickly.

What does not work yet

Agent Guard speaks stdio on both sides, which rules out two setups:

Setup Why
Hosted connectors (e.g. ChatGPT connectors) The client talks to a remote server over HTTP; a local process cannot insert itself into that path.
Remote downstream servers Agent Guard can only proxy servers it launches itself, so a remote HTTP MCP server cannot sit behind it.

Both are lifted by HTTP transport support, which is on the roadmap. The second is the smaller change of the two - see issues if you want it.

Examples

examples/verdict_demos.py runs Agent Guard in-process against a real @modelcontextprotocol/server-filesystem, scoped to a temp directory, and walks through all four verdicts (allowed, warned, blocked for a credential in args, blocked for a taint leak), printing the resulting audit log:

pip install -e .
python examples/verdict_demos.py

Requires Node.js (npx) on PATH.

Detections

Each detection has a configurable action (block / redact / warn / allow). Defaults below; override any of them under actions: in your config.

Detection Catches Phase Default
dangerous_command rm -rf, curl | sh, chmod 777, destructive SQL (DROP/DELETE/UPDATE without WHERE) pre-call args block
secret_in_args API keys, AWS creds, tokens, private keys in args (+1 level base64/hex) pre-call args block
path_traversal encoded ../, null bytes, deep climbs (../../../), sensitive targets (/etc/passwd, .ssh/) pre-call args warn
sql_injection tautologies (' OR '1'='1), stacked queries ('; DROP), UNION SELECT, comment terminators pre-call args warn
taint_leak a value read from a sensitive source reappearing in a call to an external sink pre-call args block
taint_unknown a sink call scanned clean after taint evidence was evicted, so the result isn't conclusive pre-call args warn
secret_in_output secrets in tool results (redacted in audit log only) post-call result redact
prompt_injection_marker verbatim phrases like "ignore previous instructions" in results post-call result warn

path_traversal, sql_injection, and prompt_injection_marker are heuristic tripwires (see Limitations). They default to warn so they surface suspicious activity in the audit log without blocking legitimate calls while you tune. Set them to block once you trust them for your workload.

Configuration

See agent-guard.example.yaml for the full schema: per-detection actions (block / redact / warn / allow), taint sources/sinks, size limits, and the global kill switch.

Limitations (read this)

  • Redaction is audit-log-only: when a secret is detected in a tool's output, it's redacted in the audit log but the agent still receives the unredacted result (so its reasoning isn't disrupted). This means the audit log is not a faithful record of what the agent saw - relevant if you're using this for compliance purposes.
  • The prompt injection scanner is a tripwire, not a defense. It matches verbatim/near-verbatim phrasing like "ignore previous instructions". A rephrased or obfuscated injection will not be caught. A clean scan does not mean the output is safe.
  • Taint tracking matches exact values (plus one level of base64/hex decoding). An agent that paraphrases a secret or applies further encoding will not be caught.
  • The taint store is bounded and per-session. It holds at most max_taint_entries values and evicts oldest-first. Once anything has been evicted, a sink call that scans clean is no longer conclusive, so Agent Guard reports taint_unknown instead of silently treating the call as clean. Raise max_taint_entries for long sessions, or set taint_unknown: block to fail closed.
  • The path-traversal and SQL-injection checks are tripwires, not validators. They match known-suspicious patterns in tool call args (encoded traversal, tautologies, etc.) and default to warn. They scan top-level string args only, won't catch novel/obfuscated payloads, and are no substitute for the downstream server doing real input validation and parameterized queries.
  • The config file is not tamper-proof. Anyone with filesystem access to agent-guard.yaml can disable detections or flip the kill switch. This is not a hardened security boundary in v1.

Security

Found a way past a detection? See SECURITY.md for how to report it privately, and for what is in scope versus a known limitation.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_agent_guard-0.1.1.tar.gz (47.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_agent_guard-0.1.1-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file mcp_agent_guard-0.1.1.tar.gz.

File metadata

  • Download URL: mcp_agent_guard-0.1.1.tar.gz
  • Upload date:
  • Size: 47.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for mcp_agent_guard-0.1.1.tar.gz
Algorithm Hash digest
SHA256 777e878f40eac9f7c55333286dc8f08d1cdb812d31f167be59b2e951e31191da
MD5 6fd41d1af0a52e90cb2b6bcb09f7b5cc
BLAKE2b-256 62133e8e3403bb63346c7b5fff7da3682992a8d24c8be689334dbf604052d430

See more details on using hashes here.

File details

Details for the file mcp_agent_guard-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_agent_guard-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 70dacbd4c88741a1a9be5f30273466061b2ba3ccfca668eef724856d3cc8512d
MD5 5adf0f2d2556c2edab39d6eb387982e5
BLAKE2b-256 0e152c98765c8df7f60624063978080f4245eeca568d8c4ef05b264aef437b9e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.1 This release

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page