# 9hannahnine-jpg/arc-gate-mcp [Health: Active]

**Category:** 🔒 Security  
**Repository:** https://github.com/9hannahnine-jpg/arc-gate-mcp  
**GitHub Stars:** 2  
**npm Downloads (last month):** 19844  
**Views:** 5  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/9hannahnine-jpg-arc-gate-mcp

## Description
Runtime governance for MCP tool calls. Blocks prompt injection and capability abuse before tool results reach your agent.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `uvx` (confidence: high):

```json
"mcpServers": {
  "arc-gate-mcp": {
    "command": "uvx",
    "args": ["mcp-server-fetch"]
  }
}
```

## Documentation

## What 9hannahnine-jpg/arc-gate-mcp MCP server does

9hannahnine-jpg/arc-gate-mcp MCP server acts as a governance proxy for MCP tool calls. Instead of connecting an MCP client directly to an upstream server, the client connects through Arc Gate. Results returned by the upstream server pass through Arc Gate governance before they are delivered to the agent.

The stated focus is the MCP trust boundary: the proxy is designed to block prompt injection attacks delivered through tool results and to prevent capability abuse. It is therefore suited to deployments where an agent consumes data from tools that may contain untrusted or adversarial content.

## How it works

Run Arc Gate with an upstream MCP server command and select a policy. The `--upstream` value identifies the server that Arc Gate should proxy, while `--policy` selects the enforcement profile. The README demonstrates an upstream Fetch server launched with `uvx mcp-server-fetch`.

Available policy modes are:

- `balanced` for general-purpose use
- `browser_agent` for web-browsing agents
- `finance_agent` for financial-data agents
- `rag_assistant` for document-retrieval agents
- `strict` for maximum enforcement

The proxy sits in the request and response path; the documented governance behavior applies before tool results reach the agent. The material does not describe the individual detection rules, policy configuration format, or how blocked results are reported.

## Setup and configuration

Install the package from PyPI with:

```bash
pip install arc-gate-mcp
```

A direct launch example is:

```bash
arc-gate-mcp --upstream "uvx mcp-server-fetch" --policy balanced
```

For Claude Desktop, the README configures the server through `uvx`, passing `arc-gate-mcp`, the upstream command, and the `browser_agent` policy in the MCP server definition. Replace the example upstream or policy with the values appropriate for the MCP server and agent workload you are governing.

## Tools and capabilities

The primary capability is proxy-based runtime governance rather than a separate business-data tool set. Supported behavior documented for this project includes:

- Routing an MCP client through an upstream MCP server
- Evaluating tool results before they reach the agent
- Applying named governance profiles
- Using stricter enforcement for sensitive or higher-risk agent workflows
- Running as a local command or through a Claude Desktop MCP configuration

The available policy names provide workload-oriented choices for browsing, finance, retrieval, general use, and strict enforcement. No additional MCP tools, APIs, credentials, or environment variables are documented.

## Limitations and notes

9hannahnine-jpg/arc-gate-mcp MCP server requires an upstream MCP server command to proxy; the README does not present it as a standalone replacement for an application server. The documentation does not specify whether policies can be customized, how false positives are handled, or what content is logged. It also does not list compatibility details for MCP clients other than the Claude Desktop configuration example.

The project is licensed under AGPL-3.0. The README links to Bendex Arc Platform and Heym, including a governed web research template, but those references do not document additional local configuration or authentication requirements for this package.

_Full upstream README: https://allmcps.com/mcp/9hannahnine-jpg-arc-gate-mcp/readme_

