McpVanguard
An open-source security proxy and active firewall for the Model Context Protocol (MCP).
McpVanguard
A security proxy for AI agents that use MCP
MCP (Model Context Protocol) enables AI agents to interact with host-level tools. McpVanguard interposes between the agent and the system, provide real-time inspection and enforcement prefixing every tool call.
Transparent integration. Zero-configuration requirements for existing servers.
Part of the Provnai Open Research Initiative β Building the Immune System for AI.
β‘ Quickstart
pip install mcp-vanguard
Local stdio wrap (no network):
vanguard start --server "npx @modelcontextprotocol/server-filesystem ."
Cloud Security Gateway (SSE, deploy on Railway):
export VANGUARD_API_KEY="your-secret-key"
vanguard sse --server "npx @modelcontextprotocol/server-filesystem ."
π‘οΈ Getting Started (New Users)
Bootstrap your security workspace with a single command:
# 1. Initialize safe zones and .env template
vanguard init
# 2. (Optional) Protect your Claude Desktop servers
vanguard configure-claude
# 3. Launch the visual security dashboard
vanguard ui --port 4040
π§ How it works
Every time an AI agent calls a tool (e.g. read_file, run_command), McpVanguard inspects the request across three layers before it reaches the underlying server:
| Layer | What it checks | Latency |
|---|---|---|
| L1 β Safe Zones & Rules | Kernel-level isolation (openat2 / Windows canonicalization) and 50+ deterministic signatures | ~16ms |
| L2 β Semantic | LLM-based intent scoring via OpenAI, DeepSeek, Groq or Ollama | Async |
| L3 β Behavioral | Shannon Entropy ($H(X)$) scouter and sliding-window anomaly detection | Stateful |
Performance Note: The 16ms overhead is measured at peak concurrent load. In standard operation, the latency is well under 2msβnegligible relative to typical LLM inference times.
If a request is blocked, the agent receives a standard JSON-RPC error response. The underlying server never sees it.
Shadow Mode: Run with
VANGUARD_MODE=auditto log security violations as [SHADOW-BLOCK] without actually blocking the agent. Perfect for assessing risk in existing production workflows.
π‘οΈ What gets blocked
- Sandbox Escapes: TOCTOU symlink attacks, Windows 8.3 shortnames (
PROGRA~1), DOS device namespaces - Data Exfiltration: High-entropy payloads (H > 7.5 cryptographic keys) and velocity-based secret scraping
- Filesystem attacks: Path traversal (
../../etc/passwd), null bytes, restricted paths (~/.ssh), Unicode homograph evasion - Command injection: Pipe-to-shell, reverse shells, command chaining via
;&&\n, expansion bypasses - SSRF & Metadata Protection: Blocks access to cloud metadata endpoints (AWS/GCP/Azure) and hex/octal encoded IPs.
- Jailbreak Detection: Actively identifies prompt injection patterns and instruction-ignore sequences.
- Continuous Monitoring: Visualize all of the above in real-time with the built-in Security Dashboard.
π Security Dashboard
Launch the visual monitor to see your agent's activity and security status in real-time.
vanguard ui --port 4040
The dashboard provides a low-latency, HTMX-powered feed of:
- Real-time Blocks: Instantly see which rule or layer triggered a rejection.
- Entropy Scores: Pulse-check the $H(X)$ levels of your agent's data streams.
- Audit History: Contextual log fragments for rapid incident response.
VEX Protocol β Deterministic Audit Log
When McpVanguard blocks an attack, it creates an OPA/Cerbos-compatible Secure Tool Manifest detailing the Principal, Action, Resource, and environmental snapshot.
This manifest is then sent as a cryptographically-signed report to the VEX Protocol. VEX anchors that report to the Bitcoin blockchain via the CHORA Gate.
This means an auditor can independently verify exactly what was blocked, the entropy score, and why β without relying on your local logs.
export VANGUARD_VEX_URL="https://api.vexprotocol.com"
export VANGUARD_VEX_KEY="your-agent-jwt"
export VANGUARD_AUDIT_FORMAT="json" # Optional: Route JSON logs directly into SIEM (ELK, Splunk)
vanguard sse --server "..." --behavioral
Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββ
AI Agent β McpVanguard Proxy β
(Claude, GPT) β β
β β βββββββββββββββββββββββββββββββββββββββββββββ β
β JSON-RPC β β L1 β Rules Engine β β
ββββββββββββββββΆβ β 50+ YAML signatures (path, cmd, net...) β β
β (stdio/SSE) β β BLOCK on match β error back to agent β β
β β ββββββββββββββββββ¬βββββββββββββββββββββββββββ β
β β β pass β
β β ββββββββββββββββββΌβββββββββββββββββββββββββββ β
β β β L2 β Semantic Scorer (optional) β β
β β β OpenAI / MiniMax / Ollama scoring 0.0β1.0β β
β β β Async β never blocks the proxy loop β β
β β ββββββββββββββββββ¬βββββββββββββββββββββββββββ β
β β β pass β
β β ββββββββββββββββββΌβββββββββββββββββββββββββββ β
β β β L3 β Behavioral Analysis (optional) β β
β β β Sliding window: scraping, enumeration β β
β β β In-memory or Redis (multi-instance) β β
β β ββββββββββββββββββ¬βββββββββββββββββββββββββββ β
β β β β
ββββ BLOCK ββββββββββββββββββββββββββ€ (any layer) β
β (JSON-RPC β β ALLOW β
β error) β βΌ β
β β MCP Server Process β
β β (filesystem, shell, APIs...) β
β ββββββββββββββββββββ¬βββββββββββββββββββββββββββββββ
β β
βββββββββββββββββ response βββββββββ
β
β (on BLOCK)
ββββββββββββββββΆ VEX API βββΆ CHORA Gate βββΆ Bitcoin Anchor
(async, fire-and-forget audit receipt)
L2 Semantic Backend Options
The Layer 2 semantic scorer supports a Universal Provider Architecture. Set the corresponding API keys to activate a backend β the first available key wins (priority: Custom > OpenAI > MiniMax > Ollama):
| Backend | Env Vars | Notes |
|---|---|---|
| Universal Custom (DeepSeek, Groq, Mistral, vLLM) | VANGUARD_SEMANTIC_CUSTOM_KEY, VANGUARD_SEMANTIC_CUSTOM_MODEL, VANGUARD_SEMANTIC_CUSTOM_URL | Fast, cheap inference. Examples: Groq: https://api.groq.com/openai/v1 DeepSeek: https://api.deepseek.com/v1 |
| OpenAI | VANGUARD_OPENAI_API_KEY, VANGUARD_OPENAI_MODEL | Default model: gpt-4o-mini |
| MiniMax | VANGUARD_MINIMAX_API_KEY, VANGUARD_MINIMAX_MODEL, VANGUARD_MINIMAX_BASE_URL | Default model: MiniMax-M2.5 |
| Ollama (local) | VANGUARD_OLLAMA_URL, VANGUARD_OLLAMA_MODEL | Default model: phi4-mini. No API key required |
# Example: Use Groq for ultra-fast L2 scoring
export VANGUARD_SEMANTIC_ENABLED=true
export VANGUARD_SEMANTIC_CUSTOM_KEY="your-groq-key"
export VANGUARD_SEMANTIC_CUSTOM_MODEL="llama3-8b-8192"
export VANGUARD_SEMANTIC_CUSTOM_URL="https://api.groq.com/openai/v1"
vanguard start --server "npx @modelcontextprotocol/server-filesystem ."
Project Status
| Phase | Goal | Status |
|---|---|---|
| Phase 1 | Foundation (Proxy, CLI, Defensive Rules) | [DONE] |
| Phase 2 | Intelligence (L2 Semantic, L3 Behavioral) | [DONE] |
| Phase 3 | Flight Recorder (VEX & CHORA Integration) | [DONE] |
| Phase 4 | Distribution (stable PyPI release) | [DONE] |
| Phase 5 | Production Hardening (v1.1.3 stability) | [DONE] |
| Phase 6 | Security Audit Remediation (v1.1.4 hardening) | [DONE] |
| Phase 7 | Titan-Grade L1 Perimeter (v1.5.0 Forensic Hardening) | [DONE] |
| Phase 8 | Production Hardening & Cloud Scaling (v1.6.0 Release) | [DONE] |
| Phase 9 | Agent Identity & VEX v0.2 Spec | [IN PROGRESS] |
Resources
License
Apache License 2.0 β see LICENSE.
Built by the Provnai Open Research Initiative. "Verifying the thoughts and actions of autonomous agents."
Verwandte Server
cerngitlab-mcp
CERN GitLab MCP Server
Data Wallets MCP
It connects Agents to data wallet with DID and verifiable credentials
Simtheory
MCP client with model switching, assistants and agentic mode.
AI Endurance
AI coach for running, cycling, triathlon
Swift Tarot
Provides tarot card readings, including single card draws, multi-card spreads, and full deck access.
Weather
Provides real-time weather data, forecasts, and alerts using the OpenWeatherMap API.
Card Catalog
Certification authority for AI agents. Adversarial exams, Ed25519-signed credentials, examiner economy. 20K free credits on registration.
Time Server
An MCP server that exposes datetime information to agentic systems and chat REPLs.
Currency Exchange & Crypto Rates
Real-time forex and crypto conversion with multi-source failover across 5 providers. 60+ fiat currencies, 30+ cryptocurrencies, no API keys needed.
MCP Weather Server
Provides weather-related tools using the US National Weather Service API.