MCP runtime security proxy. Blocks dangerous AI agent tool calls with a policy engine.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Block dangerous MCP tool calls at the protocol layer. Scan, proxy, enforce.
Part of the MCP Security Platform. Scan before you trust with mcp-observatory (236β ), then enforce at runtime with mcp-seatbelt. π Read the technical whitepaper.
π Website: kryptosai.github.io/mcp-seatbelt β demo, comparison, pricing
AI coding agents (Cursor, Claude, VS Code, ChatGPT, Windsurf, and others) connect to MCP servers that expose file systems, shell interpreters, network access, and environment variables. Static scanners tell you you're exposed β but they act after the fact. By the time a scanner flags a risky server, the agent may have already run a destructive command, exfiltrated credentials, or reached out to an untrusted endpoint.
MCP Seatbelt adds a runtime enforcement layer. It acts as a policy proxy between the agent and every MCP server, evaluating each JSON-RPC tool call against rules you control and denying dangerous requests before they reach the upstream. It does not operate at the TCP level β it inspects and gate-checks every call at L7 (the MCP protocol layer) before forwarding.
Detects MCP configs across 8 clients β Automatically discovers MCP server configurations from Cursor, Claude Desktop, VS Code (user + workspace), ChatGPT Desktop, Codex, JetBrains IDEs (IntelliJ, PyCharm, WebStorm, etc.), Windsurf, and project-local files (.mcp.json, .mcp/config.json). No manual wiring required.
Runtime proxy with policy enforcement β Starts a transparent JSON-RPC 2.0 proxy on port 9420. Every tool call, resource access, and prompt request is intercepted, evaluated against your policy, and allowed, denied, warned, or redacted. Three modes: default-deny (zero-trust), allowlist (whitelist known-good), and audit (log only, no blocking).
13 built-in risk rules β Covers shell interpreters (bash, sh, zsh, python, node), sandbox bypass (--no-sandbox, --disable-web-security), credential exposure in environment variables, Docker privileged containers, raw network tools (curl, nc, telnet), process spawning, destructive filesystem operations, remote URL access, risky package runners (npx, uvx), privilege escalation (sudo, chmod), and sensitive filesystem paths.
Policy engine with time-windowed rules, learning mode, rule inheritance, and context awareness β Rules support regex pattern matching, exact-match, and substring containment. Restrict tool access by day of week and hour range (timeWindow). Condition rules on client identity or request rate (contextCondition). Policies can extend parent templates. The audit mode serves as a learning mode: run it to observe actual tool usage before switching to enforce.
Live dashboard, SARIF reports, CI/CD integration, and observatory bridge β A real-time HTML dashboard shows request stats, block rates, connected clients, and recent blocked calls. Generate SARIF 2.1.0 reports for GitHub Code Scanning. Import security findings from mcp-observatory and automatically convert them to policy rules. mcp-seatbelt check exits non-zero in CI when critical risks are detected.
Per-call timeouts β Hung tool calls are killed and return a clean JSON-RPC error instead of a raw 503. Configurable per-rule (10s for shell commands, 60s for safe tools).
.mcpcap.json for incident analysisOn first run, init creates .mcp-seatbelt/policy.yml (your editable ruleset) and .mcp-seatbelt/risk-report.md (a summary of every server and its risk flags). The proxy starts in audit mode by default β observe actual tool usage, then switch to enforce when ready.
Images are automatically built and published on every release via GitHub Actions.
Run MCP Seatbelt as a CI security gate with the official GitHub Action β it checks detected MCP configs, simulates your policy against representative tool calls, and fails the build on critical risks.
See action.yml for all inputs, outputs, and enforcement options.
allow, deny, warn, or redact with reasons.redact replaces argument values matching credential patterns with ***.The proxy never returns a raw upstream error to the agent. If a call exceeds its timeout, the child process is killed and the agent receives a clean error message β no 503s, no hanging connections.
Every request flows through an 11-stage pipeline: RBAC β Schema Validation β Path Safety β Policy Engine β Threat Intel β Honeytokens β Attack Chains β Proxy β Response DLP β Forensics β Audit Log.
| Feature | mcp-seatbelt | mcp-firewall | mcp-guardian | Prismor | mcp-proxy | |---|---|---|---|---|---|---| | Runtime blocking | β | β | β | β | β | | Pre-install scanning | β | β | β | β | β | | 8+ client detection | β | β | β | β | β | | Argument redaction | β | β | β | β | β | | Learning mode | β | β | β | β | β | | Live dashboard | β | β | β | β | β | | SARIF / GitHub Code Scanning | β | β | β | β | β | | mcp-observatory integration | β | β | β | β | β | | Per-call timeouts | β | β | β | β | β | | OWASP LLM Top 10 mapping | β | β | β | β | β | | Compliance tagging (SOC2/HIPAA) | β | β | β | β | β | | Attack chain detection | β | β | β | β | β | | Honeytoken/injection detection | β | β | β | β | β | | Schema-aware validation | β | β | β | β | β | | Threat intel (IOC lookup) | β | β | β | β | β | | RBAC (per-agent access) | β | β | β | β | β |
Seatbelt is the only tool that combines pre-install scanning with runtime enforcement, covers all major AI agent clients, redacts credential arguments inline, and bridges static analysis results from mcp-observatory into live policy rules.
mcp-seatbelt includes a defense-in-depth security pipeline that evaluates every tool call through multiple layers:
| Layer | Feature | Description |
|---|---|---|
| 1 | RBAC | Casbin-based role-based access control for agents and tools. mcp-seatbelt rbac-init generates model and policy files. |
| 2 | Schema Validation | AJV-based JSON Schema validation of tool arguments against compiled schemas. |
| 3 | Path Safety | Detects path traversal, null-byte injection, and sensitive path access in arguments. |
| 4 | Policy Engine | Rule-based evaluation with regex/exact/contains matching, time windows, context conditions, and arg constraints. |
| 5 | Threat Intel | Async ThreatFox IOC lookup for IPs and domains in tool arguments. |
| 6 | Honeytokens | Plants decoy credentials in responses; detects exfiltration when honeytokens appear in subsequent calls. |
| 7 | Attack Chain Tracking | XState-based state machine tracking multi-step attack patterns (reconβexecutionβpersistenceβexfiltration). |
| 8 | Forensic Capture | Records all requests and responses in signed .mcpcap.json session files when enabled. |
| 9 | Response DLP | Scans upstream responses for secret patterns (API keys, tokens, private keys) and redacts them. |
| 10 | Input Fuzzing | Generates edge-case payloads from JSON schemas and tests policy bypass resilience. mcp-seatbelt fuzz --policy policy.yml |
mcp-seatbelt fuzz generates randomized tool call arguments using json-schema-faker, injects edge-case payloads (path traversal, command injection, SQL injection, Log4Shell), and evaluates each payload against your policy. Bypasses are reported with the specific payload and rule that should have blocked them.
| Command | Description |
|---|---|
mcp-seatbelt fuzz | Fuzz a policy against tool schemas to find bypasses |
mcp-seatbelt record | Start proxy in forensic recording mode |
mcp-seatbelt rbac-init | Initialize RBAC model and policy files |
mcp-seatbelt simulate | Simulate a tool call against the policy and show evaluation trace |
mcp-seatbelt benchmark | Run performance benchmarks against the proxy |
mcp-seatbelt test-policy | Run policy tests from a test YAML file |
mcp-seatbelt baseline | Generate a behavioral baseline from audit logs |
mcp-seatbelt verify-audit | Verify signed audit log integrity |
| Rule | Target | Description |
|---|---|---|
block-shell-execution | command | Blocks direct shell interpreter invocations (bash, sh, zsh, cmd, powershell) |
block-sensitive-paths | file | Blocks filesystem writes to /etc, /root, ~/.ssh, ~/.aws, C:\Windows |
block-credential-access | command | Blocks tools whose descriptions mention passwords, secrets, tokens, keys |
redact-credentials | command | Redacts argument values whose key names match credential patterns |
block-private-network | network | Blocks HTTP requests to private/loopback address ranges |
block-process-execution | process | Blocks tools that spawn child processes or evaluate code |
allow-filesystem-writes-business-hours | file | Allows filesystem writes only Mon-Fri, 09:00-17:00 |
| Template | Default Action | Use Case |
|---|---|---|
minimal-workstation | allow | Blocks shell execution and credential access only; everything else permitted |
pci-compliance | deny | Blocks shell, credentials, PAN/cardholder data paths, audit log tampering |
strict-production | deny | Blocks all tool calls, network requests, and filesystem operations by default |
Templates can be extended via the extends field in your policy file:
Entries in the allowlist bypass all deny rules. Use after running init to whitelist known-good tools, paths, hosts, and environment variables:
After starting the proxy, update each client's MCP configuration to route through localhost:9420. The proxy prints a table of proxy URLs on startup β copy and paste them.
Cursor β ~/.cursor/mcp.json
Claude Desktop β ~/Library/Application Support/Claude/claude_desktop_config.json
VS Code β .vscode/mcp.json or User settings
ChatGPT Desktop β App config
Codex / JetBrains / Windsurf β Same pattern: replace the command/args transport with "url": "http://localhost:9420/<server-name>".
mcp-observatory scans MCP servers at rest β auditing source code, supply chain posture, and manifest hygiene. Seatbelt provides the runtime counterpart.
Workflow:
mcp-seatbelt import-observatory ./observatory-results.json converts findings into policy rules.The observatory bridge (mergeObservatoryPolicy) can merge findings into an existing seatbelt policy without overwriting your custom rules.
Measured on Apple M3, Node.js 22, macOS β 1,000 requests at concurrency 10 against an instant-response upstream (median of 3 runs, zero failed requests):
| Metric | Value |
|---|---|
| Throughput | ~2,000 req/s (vs ~4,300 req/s direct, no proxy) |
| End-to-end latency (p50) | ~3.9 ms (adds ~2 ms over direct) |
| End-to-end latency (p95) | ~6.6 ms |
| Policy evaluation (p50) | 6.6 Β΅s (7 rules); 8.5 Β΅s (20 rules) |
| Policy evaluation (p95) | 7.7 Β΅s (7 rules) |
| DLP overhead | ~+0.1 ms per response |
| Schema validation overhead | < 1 Β΅s per call |
| Memory (idle) | ~74 MB |
| Memory (under load) | ~74 MB (flat after 10,000 requests) |
Policy size (1 β 20 rules) has no measurable end-to-end impact; per-rule cost is ~0.25 Β΅s, far below transport I/O. Full methodology and per-scenario tables: docs/benchmarks.md. Run mcp-seatbelt benchmark on your own hardware.
mcp-observatory Cloud provides hosted dashboards, private CI scanning, certification badges, and supply-chain compliance reports for teams and organizations. Seatbelt integrates as the runtime enforcement layer β observatory validates what you install; seatbelt controls what it can do at execution time.
mcp-seatbelt check)/metrics endpoint for observability stacks (#15)See CONTRIBUTING.md for development setup, testing instructions, and pull request guidelines. Security issues should follow the process in SECURITY.md.
npm test runs the full Vitest suite; npm run typecheck verifies TypeScriptMIT β mcp-seatbelt contributors
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-seatbelt)<a href="https://allmcps.com/mcp/mcp-seatbelt"><img src="https://allmcps.com/api/badge/mcp-seatbelt?style=directory" alt="Mcp Seatbelt on AllMCPs" /></a>