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

Top 6 Open Source Claude Skills (April 15 – May 3)
Six open-source Claude skills from the last 15 days: brand-alchemy, npm-downloads-to-leads, hyperframes, email-newsletter, pricing, and more. Detailed breakdown of each skill's functionality.

Arena AI Model ELO History Tracks LLM Performance Decay Over Time
A live dashboard visualizes ELO ratings of flagship models from major AI labs, revealing gradual performance degradation and sudden jumps at new releases. The tool dynamically plots one curve per lab, tracking the highest-rated model.

Freddy CLI: Connect Health Data to AI Agents via MCP
Freddy publishes an open-source CLI to connect wearable health data (Oura, Polar, Withings, etc.) to AI coding agents via MCP. Commands for OAuth device flow, data querying, and token refresh.

AI Claw: Serverless Bridge Connects Alexa to Local OpenClaw with Dual Delivery
AI Claw is a Python AWS Lambda pipeline that connects Amazon Echo speakers to local OpenClaw instances, bypassing Amazon's 8-second timeout by using a fire-and-forget architecture with dual delivery to Telegram and native Echo audio output.