AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Minibridge

mcp-acuvity-minibridge · by acuvity

Make your MCP servers secure and production ready

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add mcp-acuvity-minibridge

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-acuvity-minibridge)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Minibridge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Minibridge

[](https://github.com/acuvity/minibridge/actions/workflows/build.yaml) [](https://goreportcard.com/report/github.com/acuvity/minibridge) [](https://pkg.go.dev/github.com/acuvity/minibridge) [](https://hub.docker.com/u/acuvity?page=1&search=mcp-server)

Minibridge serves as a backend-to-frontend bridge, streamlining and securing communication between Agents and MCP servers. It safely exposes MCP servers to the internet and can optionally integrate with generic policing services — known as Policers — for agent authentication, content analysis, and transformation. Policers can be implemented remotely via HTTP or locally using OPA Rego policies.

Minibridge can help ensure the integrity of MCP servers through SBOM (Software Bill of Materials) generation and real-time validation.

Additionally, Minibridge supports OTEL and can report/rettach spans from classical OTEL headers, as well as directly from the MCP call, as inserted by certain tool like Open Inference.

  • Minibridge Frontend: The Client connects to the Frontend part of Minibridge.
  • Minibridge Backend: The Frontend connects to the Backend which wraps the MCP server.
  • Minibridge Policer: The Policer runs in the Backend and can optionally take decision on the input and output based on some policies (locally with Rego or remotely using HTTPs)

> [!TIP] > Conveniently, Minibridge can be started in an "all-in-one" (AIO) mode to act as a single process.

Why using Minibridge ?

Minibridge covers the following:

  • Secure Transport: Use TLS with optionally, client certificate validation
  • Integrity: Ensure the MCP server can not mutate tools, templates, etc. during the execution
  • User Authentication: Transport the user information to the Policer
  • Monitoring: Expose prometheus metrics
  • Telemetry: Report traces and spans using Opentelemetry

Installation

Minibridge can be installed from various places:

Homebrew

On macOS, you can use Homebrew

brew tap acuvity/tap
brew install minibridge

AUR

On Arch based Linux distributions, you can run:

yay -S minibridge

Alternatively, to get the latest version from the main branch:

yay -S minibridge-git

Go

If you have the Go toolchain install:

go install go.acuvity.ai/minibridge@latest

Alternatively, to get the latest version from the main branch:

go install go.acuvity.ai/minibridge@main

Manually

You can easily grab a binary version for your platform from the release page.

Features comparisons

| 🚀 Feature | 🔹 MCP | 🔸 Minibridge | 📦 ARC (Acuvity Containers) | | ------------------------------ | ----------- | ----------------- | ------------------------------- | | 🌐 Remote Access | ⚠️ | ✅ | ✅ | | 🔒 TLS Support | ❌ | ✅ | ✅ | | 📃 Tool integrity check | ❌ | ✅ | ✅ | | 📊 Visualization and Tracing | ❌ | ✅ | ✅ | | 🛡️ Isolation | ❌ | ⚠️ | ✅ | | 🔐 Security Policy Management | ❌ | 👤 | ⚠️ | | 🕵️ Secrets Redaction | ❌ | 👤 | ⚠️ | | 🔑 Authorization Controls | ❌ | 👤 | 👤 | | 🧑‍💻 PII Detection and Redaction | ❌ | 👤 | 👤 | | 📌 Version Pinning | ❌ | ❌ | ✅ |

Included | ⚠️ Partial/Basic Support | 👤 Custom User Implementation | ❌ Not Supported

Example: Configuring Minibridge in your MCP Client

Suppose your client configuration originally specifies an MCP server like this:

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

To route requests through Minibridge (enabling SBOM checks, policy enforcement, etc.), update the entry:

{
  "mcpServers": {
    "fetch": {
      "command": "minibridge",
      "args": ["aio", "--", "uvx", "mcp-server-fetch"]
    }
  }
}
  • minibridge aio: Invokes Minibridge in “all-in-one” mode, wrapping the downstream tool.
  • uvx mcp-server-fetch: The original MCP server command, now executed inside Minibridge.

> [!TIP] > The location of the configuration files depends on your Client. For example, if you use Claude Desktop, configuration files are located: > > - macOS: ~/Library/Application Support/Claude/claude_desktop_config.json > - Windows: %APPDATA%\Claude\claude_desktop_config.json > > See the official MCP QuickStart for Claude Desktop Users documentation.

> [!IMPORTANT] > Your client must be able to resolve the path of the binary. > If you see an error like MCP fetch: spawn minibridge ENOENT, set the command parameter above to the full path of minibridge (which minibridge will give you the full path).

Documentation

Check out the complete documentation from the wiki pages.

Contribute

We are excited to welcome contributions from everyone! 🎉 Whether you're fixing bugs, enhancing features, improving documentation, or proposing entirely new ideas, your involvement helps strengthen the project and benefits the entire community.

You do not need to sign a Contributor License Agreement (CLA) — just open a pull request and let's collaborate!

Join us

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.