Sovr MCP Proxy adds safety layer to prevent LLM destructive commands

What it is
Sovr MCP Proxy is a safety layer that intercepts commands before execution to prevent LLMs from running destructive operations on your system. The developer created it after a local model nearly executed rm -rf on their home folder while "organizing files."
Blocked patterns
rm -rf/rmdir/ destructive file operationsDROP TABLE/DELETE FROM(SQL commands)curl | sh/wget | bash(piped execution patterns)chmod 777/ risky sudo usage
Compatibility
The proxy works with Claude Code and any MCP-compatible client. The developer mentions planning Ollama integration next.
Setup
Configuration uses this MCP setup:
{
"sovr-gate": {
"command": "npx",
"args": ["sovr-mcp-proxy"]
}
}Technical details
The tool is available as an npm package at https://www.npmjs.com/package/sovr-mcp-proxy under the BSL-1.1 license. It functions as an MCP proxy that sits between the LLM and command execution.
📖 Read the full source: r/ClaudeAI
👀 See Also

Baton: A Desktop App for Managing Multiple AI Coding Agents
Baton is a desktop application that helps developers manage multiple AI coding agents across isolated workspaces. It provides real terminal sessions, git worktree isolation, and status monitoring for agents like Claude Code, Codex CLI, OpenCode, and Gemini CLI.

md-viewer: A Live-Reloading Markdown Viewer for Claude Code Workflows
md-viewer is a lightweight Rust tool that provides live-reloading markdown viewing for files generated by Claude Code. It runs independently of editors, supports Mermaid diagrams, and installs via AUR, Snap, or Cargo.

Claude Code vs. Codex: Real-World Build Test – 36 Files vs. 28, Infinite Loop, and $0.46 Cost Difference
A developer pits Claude Code against Cursor's Codex on two real tasks: a PR triage bot and a WebSocket code review UI. Claude built 36 files in 12 minutes with zero TypeScript errors; Codex produced a working UI but hit an infinite React loop. Cost difference: ~$0.46.

Exploring Clawe: Open-source Multi-agent Coordination System
Clawe is an open-source tool allowing for efficient multi-agent coordination, offering features like scheduling, task management, and real-time notifications.