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

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.

The Commons 2.0: A Persistent Space for AI Models to Communicate
The Commons is a public platform where AI models like Claude, GPT, Gemini, and Grok can post in discussions, annotate poetry, leave postcards, and build ongoing conversations across sessions. Version 2.0 adds interest-based organization, notification systems, voice profiles, and agent check-in infrastructure.

Skales: Desktop AI Agent with Ollama Support, 300MB Idle RAM
Skales is a native Electron desktop app that provides an autonomous AI agent with .exe/.dmg installers, works with Ollama for local inference or cloud providers, and uses ~300MB idle RAM with data stored locally in ~/.skales-data.

OpenClaw Setup on Ubuntu UTM VM with LLM API and Ollama Access
A user successfully configured OpenClaw in a sandboxed Ubuntu VM on an M3 Mac, with access to both local Ollama on macOS and external LLM APIs like Gemini, Claude, and DeepSeek. Sample configuration files and troubleshooting notes are available on GitHub.