sovr-mcp-proxy

sovr-mcp-proxy

A transparent proxy and execution firewall that intercepts and audits AI agent tool calls against configurable security policies before forwarding them to downstream MCP servers. It provides safe execution environments with features like data redaction, anti-loop protection, and unified alert dispatching.

Category
Visit Server

README

sovr-mcp-proxy

npm version License: BSL-1.1

Transparent MCP Proxy — The Execution Firewall for AI Agents.

sovr-mcp-proxy is a superset of sovr-mcp-server. It includes all MCP Server capabilities plus a transparent proxy layer that intercepts, evaluates, and audits every agent→tool call against configurable policy rules before forwarding to downstream MCP servers.

Architecture

┌─────────────┐     ┌──────────────────┐     ┌─────────────────┐
│  AI Agent    │────▶│  sovr-mcp-proxy  │────▶│ Downstream MCP  │
│ (Claude etc) │     │  Gate-Check Layer│     │ (Stripe/GitHub) │
└─────────────┘     └──────────────────┘     └─────────────────┘
                         │
                    Policy Rules
                    Permit/Receipt
                    Audit Trail

Key Differences: Proxy vs Server

Feature sovr-mcp-proxy sovr-mcp-server
286 Native Tools
1630 SDK Routes
Transparent Proxy Mode
Downstream Server Interception
Spawn/Discover/Intercept/Forward
Multi-server Routing
Anti-loop Protection N/A
Hop Counter N/A

Quick Start

Install

npm install -g sovr-mcp-proxy

Claude Desktop Configuration

{
  "mcpServers": {
    "sovr-proxy": {
      "command": "npx",
      "args": ["sovr-mcp-proxy"],
      "env": {
        "SOVR_API_KEY": "sovr_sk_...",
        "SOVR_PROXY_CONFIG": "/path/to/proxy.json"
      }
    }
  }
}

Proxy Configuration (proxy.json)

{
  "downstream": {
    "stripe": {
      "command": "npx",
      "args": ["@stripe/agent-toolkit"],
      "env": { "STRIPE_SECRET_KEY": "sk_test_..." }
    },
    "github": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-github"],
      "env": { "GITHUB_TOKEN": "ghp_..." }
    }
  }
}

Every tool call to stripe or github is intercepted by SOVR's gate-check layer before forwarding.

How It Works

  1. Spawn — On startup, sovr-mcp-proxy spawns all downstream MCP servers as child processes
  2. Discover — Enumerates tools from each downstream server via tools/list
  3. Intercept — When the AI agent calls any tool, the proxy evaluates it against policy rules
  4. Gate-Check — Applies permit/deny/escalate verdict based on rules
  5. Forward — Approved calls are forwarded to the downstream server; denied calls return an error

Security Features

HTTPS Enforcement

All non-localhost connections are validated for HTTPS. HTTP connections to external hosts are rejected.

Fail-Close / Fail-Local Degradation

  • Default (fail-close): If SOVR Cloud is unreachable, all gated operations are denied
  • Configurable (fail-local): Set SOVR_FAIL_MODE=fail-local to fall back to 20 built-in local rules

Three-State Degradation

Mode Behavior Use Case
strict (default) Enforce all deny/escalate verdicts Production
record-only Log violations but allow execution Emergency availability rescue
propose-only Return verdict without executing Dry-run / testing

Anti-Loop Protection

  • Hop counter prevents infinite proxy chains (default max: 3 hops)
  • Re-entry guard detects circular tool call patterns

Data Redaction

Sensitive fields (password, secret, token, key, authorization, cookie, ssn, credit_card) are automatically redacted in all logs and audit entries.

Unified Alert Dispatcher

Configurable alert routing to Webhook, Slack, PagerDuty, or OpsGenie (replaces hardcoded Telegram).

Built-in Rules (Free Tier)

Rule Effect Description
Destructive Commands DENY Blocks rm -rf, mkfs, dd, shred
DDL Operations DENY Blocks DROP, TRUNCATE, ALTER
Privilege Escalation ESCALATE Flags sudo, chmod, chown for approval
Payment APIs ESCALATE Flags Stripe, PayPal calls for approval
Deployment Ops ESCALATE Flags deploy/publish/release for approval

Environment Variables

Variable Required Description
SOVR_API_KEY No Connect to SOVR Cloud for expanded tools and persistent audit
SOVR_PROXY_CONFIG No Path to proxy configuration JSON
SOVR_RULES_FILE No Path to custom rules JSON file
SOVR_PROXY_MODE No strict / record-only / propose-only (default: strict)
SOVR_FAIL_MODE No fail-close / fail-local (default: fail-close)
SOVR_MAX_HOPS No Max proxy hop count before loop detection (default: 3)
SOVR_TENANT_ID No Tenant identifier for multi-tenant deployments
SOVR_ACTOR_ID No Actor identifier for audit trail
SOVR_SESSION_ID No Session identifier for trace correlation
SOVR_ENDPOINT No Custom Cloud endpoint (advanced)

Tier Comparison

Free Personal Starter Pro Enterprise
Tools 8 23 48 98 274
Built-in Rules 5 15+ 15+ 15+ 15+
Custom Rules 3 Unlimited Unlimited Unlimited Unlimited
Proxy Downstream 1 server Unlimited Unlimited Unlimited Unlimited
Permit/Receipt Local only Cloud Cloud Cloud Cloud
Audit Trail In-memory Persistent Persistent Persistent Persistent
Approval Workflow Basic Full Full Full + SLA

Free tier works offline with zero configuration. Upgrade at sovr.inc/pricing.

Related Packages

License

BSL-1.1 — Code is source-available. Free for non-commercial use. Commercial use requires a license from SOVR AI.

After the Change Date (February 18, 2030), this software converts to Apache-2.0.


SOVR — Eyes on AI. sovr.inc

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured