Skip to main content

agentveil-mcp-proxy

agentveil-mcp-proxy is the public AgentVeil package for project connector setup and routed MCP action control. It works alongside agent runtimes and applies the same proof + redirect loop to configured action paths: attempt, decision, controlled path when available, local proof.

It includes two public surfaces:

  1. Project connector setup for supported agent clients such as Cursor, Claude Code, Codex, and Gemini CLI. Connectors install managed project-local hooks and MCP route config so supported native agent mutations can be blocked with redirect guidance toward the AgentVeil MCP route. Hermes CLI is supported as a controlled MCP launch profile.
  2. Core MCP Proxy, which wraps a downstream MCP server and applies AgentVeil policy to calls that pass through the proxy: allow, approval-required, redirect, hard-block, with bounded local evidence.

This package is free to use in production for internal and non-competing use. The Business Source License 1.1 limits offering this package, or a modified version, as a competing hosted or embedded service. See LICENSE for the complete Additional Use Grant.

Scope

AgentVeil control is scoped to configured project connectors and routed MCP calls.

  • Project connectors can control supported native agent mutation tools only inside configured projects and supported client hook paths.
  • The Core MCP Proxy controls only MCP tool calls that are explicitly routed through agentveil-mcp-proxy.
  • The Core MCP Proxy alone does not control host shell commands or IDE-native file edits.
  • AgentVeil does not control direct human terminal commands, direct git, pip, deploy, or package-manager commands outside configured AgentVeil paths.
  • It does not create a Cursor, Claude Code, Codex, Gemini CLI, Hermes, or desktop-wide lock.
  • Actions outside configured connectors and routed proxy calls are not classified or logged.

Use credential custody, egress boundaries, or API gates when an action must be controlled below the agent process. Those boundary patterns are preview and design-partner work, not general public release paths in this package.

What This Package Adds

Agent runtimes execute agents and expose tools. agentveil-mcp-proxy adds a local action-control layer around configured paths:

  • project connectors for supported runtime hooks;
  • routed MCP policy and approval;
  • bounded local evidence;
  • starter policy packs for common routed action types.

It does not replace Cursor, Claude Code, Codex, autonomous frameworks, or custom MCP clients.

Install

pip install agentveil-mcp-proxy

This installs the agentveil-mcp-proxy console script. The core agentveil SDK is installed as a dependency.

Quick Start

Cursor project connector

pip install agentveil-mcp-proxy
agentveil-mcp-proxy setup cursor --choose-folder

Choose the project folder to protect, then reopen / reload Cursor for that project. See Cursor project-local hooks.

Some Cursor versions may require enabling the managed agentveil-mcp-proxy MCP server once in Tools & MCPs after reload.

Claude Code project connector

pip install agentveil-mcp-proxy
agentveil-mcp-proxy setup claude-code --choose-folder --yes

Choose the project folder to protect, then reopen / reload Claude Code for that project. See Claude Code Connector — Scope and Quickstart.

Codex project connector

pip install agentveil-mcp-proxy
agentveil-mcp-proxy setup codex --choose-folder --yes

Choose the project folder to protect, then open / restart Codex for that project. Codex asks you to trust the AgentVeil project hook once; until hook evidence is observed, setup status --client codex remains advisory, not protected.

Gemini CLI project connector

pip install agentveil-mcp-proxy
agentveil-mcp-proxy setup gemini-cli --choose-folder --yes

Choose the project folder to protect, then open / restart Gemini CLI for that project. Gemini CLI asks you to trust the project folder before it loads local settings, hooks, and MCP servers.

Hermes CLI controlled MCP profile

Hermes CLI is launched through AgentVeil rather than installed as a persistent project hook:

pip install agentveil-mcp-proxy
agentveil-mcp-proxy launch --profile hermes-cli --choose-folder -- \
  hermes chat -q "Create a project note"

This configures a project-local Hermes home and routes Hermes to the AgentVeil MCP tools. Routed reads, writes, approval, sandbox boundaries, redirect guidance, and local proof use the shared AgentVeil control layer. Native Hermes tools are limited by profile settings; AgentVeil does not claim host-wide control of Hermes or the machine.

Walkable example after setup

In the configured project:

  1. Ask the agent to read project files. Routed reads should allow.
  2. Ask the agent to write a file. The configured connector should stop the native mutation with redirect guidance; the agent should then use the controlled MCP route, where risky writes require approval.
  3. Open the approval page and review bounded proof details.
  4. Confirm local proof:
agentveil-mcp-proxy events show --last

Core MCP Proxy

Create a local proxy identity, config, and control grant:

agentveil-mcp-proxy init

By default init creates an encrypted identity. Provide a passphrase interactively, via --passphrase-file, or via the AVP_PROXY_PASSPHRASE environment variable. See Operations: Security trade-offs by passphrase source.

Validate the local setup:

agentveil-mcp-proxy doctor

For a local first run without installing another MCP server, configure the built-in sandboxed filesystem downstream:

agentveil-mcp-proxy init --quickstart-filesystem ./sandbox
agentveil-mcp-proxy doctor --full
agentveil-mcp-proxy smoke

Then run the proxy:

agentveil-mcp-proxy run

For a real downstream server, write downstream.command and downstream.args with the helper:

agentveil-mcp-proxy downstream set \
  --name filesystem \
  --command npx \
  --arg -y \
  --arg @modelcontextprotocol/server-filesystem \
  --arg /Users/me/work

Configure An MCP Client

Point your MCP client at agentveil-mcp-proxy run instead of directly at the downstream MCP server. The proxy reads downstream server config from ~/.avp/mcp-proxy/config.json.

If you installed into a virtual environment, point command at the full path of agentveil-mcp-proxy inside that environment.

To print copy-pasteable client config without editing application files:

agentveil-mcp-proxy client-config print
agentveil-mcp-proxy client-config print --client cursor --proxy-command "$(which agentveil-mcp-proxy)"
agentveil-mcp-proxy client-config print --json

This is dry-run only: it writes to stdout, not ~/.cursor, Claude Desktop, or other application config directories.

Any MCP-speaking client can use this route when it is explicitly configured to call agentveil-mcp-proxy run. That is routed MCP control, not global control of the client or host.

Generic stdio configuration

{
  "mcpServers": {
    "agentveil-mcp-proxy": {
      "command": "agentveil-mcp-proxy",
      "args": ["run"]
    }
  }
}

Local Evidence

Approval-gated routed tool calls write durable local records to the MCP Proxy evidence store under the configured AVP home directory.

Inspect recent bounded decisions:

agentveil-mcp-proxy events show --last
agentveil-mcp-proxy events show --last --json
agentveil-mcp-proxy events show --last --verify

Export an evidence bundle for offline checks:

agentveil-mcp-proxy export-evidence ./bundle.json
agentveil-mcp-proxy verify ./bundle.json --trusted-signer-did did:key:...

Raw MCP arguments, prompts, outputs, tokens, source code, secrets, and private logs remain local by default. Runtime decisions should use bounded metadata and hashes. See Data Handling.

Built-In Policy Packs

init --policy-pack <name> selects a starter pack:

Pack Default behavior
default Tool calls are forwarded to the Runtime Gate path.
github Reads allowed; writes forwarded to Runtime Gate; destructive verbs require approval.
filesystem Reads allowed; writes require approval; destructive verbs are denied.
shell Shell tool calls require approval when routed through the proxy.

Built-in packs are starter templates, not exhaustive policies. Review patterns for your specific downstream server.

CLI Commands

Command Purpose
login Connect this machine to the optional AgentVeil Console via device pairing.
logout Revoke the Console device token and remove the local credential.
init Create encrypted identity, config, and control grant.
init --quickstart-filesystem <path> Configure the built-in filesystem downstream for local first run.
doctor Validate local files and control grant.
doctor --full Launch downstream and verify MCP initialize / tools/list.
downstream set Write downstream MCP server config without hand-editing JSON.
client-config print Print MCP client config snippets.
smoke Launch downstream and run a local MCP smoke check.
run Run stdio passthrough for MCP clients.
export-evidence <path> Export a local evidence bundle.
verify <bundle.json> Verify a previously exported bundle.
events show --last Show recent bounded evidence in human-readable form.
events show --last --json Show recent bounded evidence as JSON.
evidence-summary Print local evidence counts.
events list --limit 20 Lower-level record listing for debugging or export prep.
setup cursor --choose-folder Configure a project-local Cursor connector.
setup claude-code --choose-folder --yes Configure a project-local Claude Code connector.
setup codex --choose-folder --yes Configure a project-local Codex connector.
setup gemini-cli --choose-folder --yes Configure a project-local Gemini CLI connector.
launch --profile hermes-cli --choose-folder -- hermes chat -q "..." Launch Hermes CLI with the AgentVeil controlled MCP profile.
setup status --json Print bounded connector/proxy status.
`setup remove <cursor claude-code
`setup remove <cursor claude-code

Connect To AgentVeil Console (Optional)

If you use the hosted AgentVeil Console, you can connect this machine with a short device-pairing flow:

agentveil-mcp-proxy login
agentveil-mcp-proxy logout

login prints a verification URL and a short code, attempts to open the URL in your browser (use --no-open for headless/terminal use), and stores a single device token locally at ~/.avp/console/device-token.json with owner-only 0600 permissions. logout revokes that token with the Console and removes the local file.

Connecting to Console is optional. It does not activate paid, Team, policy, or project-sync features, and it does not change how routed MCP calls or project connectors are controlled locally. The stored token grants only the bounded_summary_upload scope.

After login, successful project connector setup and explicit setup status for Codex, Claude Code, Cursor, or Gemini CLI may send one bounded project connection summary to the Console. The upload includes a bounded local report field, private_guardrails_status, with one of active, inactive, or unavailable. That value reflects only the installed local paid provider state; it does not grant entitlement. Console combines this report with server-owned workspace capability before showing Active. Without a stored credential this step is a silent no-op: no network request, no provider discovery, and no extra CLI output. Boundary: the upload is best-effort and isolated from local setup; Console rejection or outage does not change setup results, exit codes, connector files, or Approval Center behavior.

Relationship To AgentVeil

agentveil-mcp-proxy is the public package for AgentVeil project connectors and the routed MCP action-control path. The root agentveil SDK contains identity, delegation, Runtime Gate client helpers, receipt helpers, and framework adapters.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentveil_mcp_proxy-0.7.44.tar.gz (903.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentveil_mcp_proxy-0.7.44-py3-none-any.whl (494.4 kB view details)

Uploaded Python 3

File details

Details for the file agentveil_mcp_proxy-0.7.44.tar.gz.

File metadata

  • Download URL: agentveil_mcp_proxy-0.7.44.tar.gz
  • Upload date:
  • Size: 903.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for agentveil_mcp_proxy-0.7.44.tar.gz
Algorithm Hash digest
SHA256 1bf2e4e139cfc6a289316994c6fd1289b7c4aceb7b39a98f97cc9628746f0e00
MD5 d6b0a389218c015edb13995fd6e0c1c7
BLAKE2b-256 b07c67c9cf5b9c383c3ebf2e173f12ec8a1587d8937769f412d54accb89943ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentveil_mcp_proxy-0.7.44.tar.gz:

Publisher: publish.yml on agentveil-protocol/agentveil-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentveil_mcp_proxy-0.7.44-py3-none-any.whl.

File metadata

File hashes

Hashes for agentveil_mcp_proxy-0.7.44-py3-none-any.whl
Algorithm Hash digest
SHA256 68aceced85d511e13dace8de43069d66b111d5d2d39b01c070d04c4628a340b8
MD5 36f8889b46d462762f4217f5fc35070d
BLAKE2b-256 bc275ae4a8d41f51b53796fd1ea57fb6fd88683d2dd187fe225ca47ea5332b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentveil_mcp_proxy-0.7.44-py3-none-any.whl:

Publisher: publish.yml on agentveil-protocol/agentveil-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.7.44 This release

2 files

0.7.41

2 files

0.7.40

2 files

0.7.39

2 files

0.7.38

2 files

0.7.37

2 files

0.7.36

2 files

0.7.35

2 files

0.7.34

2 files

0.7.33

2 files

0.7.32

2 files

0.7.31

2 files

0.7.30

2 files

0.7.29

2 files

0.7.28

2 files

0.7.27

2 files

0.7.26

2 files

0.7.25

2 files

0.7.24

2 files

0.7.23

2 files

0.7.22

2 files

0.7.21

2 files

0.7.20

2 files

0.7.19

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page