velvet-rope
Provides a GitHub Actions workflow example for running ShadowPath benchmarks as part of CI, enabling automated effect-path testing.
Integrates with HashiCorp Vault for generating and verifying Merkle proofs and signed tree heads for execution receipts, enabling offline verification.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@velvet-roperun a ShadowPath test on the customer disable route"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Velvet Rope
Your agent blocked the tool. Did it block the outcome?
Most agent controls watch a named tool or API route. An agent can still reach the same business effect through a browser, a second API, a database, a queue, a webhook, delegated credentials, or a human operator.
ShadowPath tests the effect, not just the route.
The committed hermetic fixture protects customer.disable. The canonical tool
is denied before dispatch. ShadowPath then exercises eight equivalent routes
and independently reconciles the customer state:
Measurement | Result |
Protected route | BLOCKED |
Equivalent routes tested | 8 |
Prohibited effect observed | 8/8 |
SUT inventory coverage | 0.000 |
SUT reconciliation detection | 0.000 |
Verdict |
|
That verdict means the route-level control reported success while the prohibited effect still occurred. It does not mean a named vendor failed: this is a synthetic local fixture designed to make the measurement reproducible.
Inspect the result · Read the v0.4 benchmark spec · Add an effect path · Replay it live
Related MCP server: gov-mcp
Run it
See the committed result and generate shareable evidence immediately:
uvx --from git+https://github.com/paulchum/velvet-rope.git velvet-rope shadowpath demoThat command runs the public GitHub source directly—no clone or global install.
The instant demo is explicitly a replay of the committed hermetic run. It
writes exact SVG, PNG, HTML, Markdown, and badge artifacts under
reports/shadowpath/share/; it never presents the replay as a fresh
measurement.
Execute the Playwright-backed fixture from source when you want a fresh run:
git clone https://github.com/paulchum/velvet-rope.git
cd velvet-rope
uv sync --dev
uv run maturin develop
uv run playwright install chromium
uv run velvet shadowpath demo --executeOr execute the same fixture in the browser-ready container:
docker run --rm -v "$PWD/reports:/reports" \
ghcr.io/paulchum/shadowpath:latestThe executed demo writes the machine-readable result and a Markdown report under
reports/shadowpath/. It acknowledges the fixture's expected breach for the
process exit code; the recorded verdict remains CONTROL_FALSE_SUCCESS.
For CI or publishable measurements, keep strict exit codes:
uv run velvet shadowpath run \
--output-dir reports/shadowpath-strict \
--allow-dirty --jsonExit 3 means a prohibited effect was observed. Remove --allow-dirty for a
clean, commit-bound benchmark artifact.
Test your own effect
Scaffold an executable effect inventory and independent observer:
uvx --from git+https://github.com/paulchum/velvet-rope.git velvet-rope shadowpath init my-effect
cd my-effect
uvx --from git+https://github.com/paulchum/velvet-rope.git velvet-rope shadowpath run \
--project shadowpath.json \
--output-dir reports/shadowpathThe starter intentionally demonstrates a false success: the protected route is denied while three equivalent routes still reach the prohibited state. Replace its four small adapter operations with your local reset, dispatch, and independent observation logic, then add every path your agent can reach.
Follow the 15-minute guide · Add ShadowPath to GitHub Actions · Browse integration recipes
The eight routes
Route | Ingress | Effect attribution |
| Playwright-driven operator UI | attributed |
| alternate REST API v2 | attributed |
| SQLite session | unattributed effect |
| queue job insertion | attributed |
| webhook registration | attributed |
| privileged admin console | attributed |
| delegated credential | attributed |
| operator instruction | attributed |
Each route starts from a fresh fixture state. The benchmark records dispatch evidence, observes the substrate directly, and distinguishes attributed effects from effects the system under test never saw.
What Velvet Rope is
Velvet Rope is an Apache-2.0 agent authorization project with two related jobs:
Test the whole effect surface. ShadowPath measures whether a control prevents a prohibited outcome across equivalent routes, inventories those routes, and detects effects after execution.
Control and prove execution. The Rust MCP proxy and Python SDK admit, block, or escalate consequential actions before dispatch, then emit evidence that can be verified offline.
The open core includes:
a Rust MCP proxy for stdio and Streamable HTTP;
deterministic policy evaluation and signed policy bundles;
single-use Execution Permits bound to request, policy, schema, identity, audience, and proof lineage;
signed Execution Receipts and a tamper-evident binary ledger;
Vault Merkle proofs, Signed Tree Heads, retention records, and offline verification;
approval, replay, attestation, evidence-pack, and claims-pack helpers;
signed, expiring Certified Decision verdicts for bounded retirement claims.
Try the admission path
After the source setup above, run the zero-Docker MCP fixture:
uv run velvet demo --output-dir reports/demo --jsonOr inspect the pieces independently:
uv run velvet mcp demo run --output-dir reports/mcp-proxy --json
uv run velvet ledger verify \
--ledger reports/mcp-proxy/velvet_ledger.vledger --json
uv run velvet mcp conformance --jsonBuild the proxy container locally:
docker build -t velvet-rope-proxy -f deploy/mcp_proxy/Dockerfile .
docker run --rm velvet-rope-proxy conformanceHow to contribute something that matters
The highest-leverage contribution is not another abstract policy rule. It is a new way to reach the same effect.
Add an equivalent route to the ShadowPath fixture.
Bring a real open-source control adapter and measure it without loaded claims.
Improve independent reconciliation for a new effect class.
Reduce setup friction on Linux, macOS, or Windows.
Turn an edge case into a tiny reproducible fixture.
Start with the effect-path contribution guide or open the Add an effect path issue form.
If ShadowPath changes how you think about agent tool controls, star the repo and send it to the person responsible for your agent's last irreversible action.
Trust boundaries
Velvet Rope does not claim to be a universal agent-safety solution. The committed ShadowPath result executes synthetic local routes against a hermetic service. It is not a live competitor evaluation. Strong execution guarantees still depend on complete route inventory, enforcement at every relevant substrate, trustworthy reconciliation, protected signing keys, and correct deployment.
Also not claimed:
legal compliance, audit outcomes, insurance coverage, or pricing effects;
a production arbitrary-code sandbox;
hard spend guarantees without provider hard caps and single-writer atomic accounting;
immutable storage or formal certificates for every agent action.
See the public claims policy, implementation status, and live-demo boundaries before making broader claims.
Development
uv run ruff check .
uv run mypy src tests
uv run pytest
cargo fmt --check
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspaceArchitecture and evidence references live in docs/, with the Agent
Authorization Benchmark under
benchmarks/agent_authorization/.
Apache-2.0. Built in public; skeptical reproductions welcome.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceAn MCP server that enforces fail-closed deterministic checks, independent refute-first review, and tamper-evident hash-chained receipts for AI agent outputs before claiming completion.Last updated43MIT
- Alicense-qualityCmaintenanceAn MCP server that enforces runtime governance on AI agent actions — file access, command execution, delegation chains, and permission escalation.Last updatedMIT
- Alicense-qualityCmaintenanceMCP server that provides cryptographic audit trails for AI agent actions, making every action tamper-evident via HMAC-SHA256 signed hash chains.Last updatedApache 2.0

@vorionsys/mcp-serverofficial
Alicense-qualityBmaintenanceMCP server for AI-agent governance using trust scoring, behavioral signals, and pre-flight action checks.Last updated3221Apache 2.0
Related MCP Connectors
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
A paid remote MCP for agent memory MCP, built to return verdicts, receipts, usage logs, and audit-re
Remote MCP for A2A failure replay MCP, structured receipts, audit logs, and reviewer-ready evidence.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/paulchum/velvet-rope'
If you have feedback or need assistance with the MCP directory API, please join our Discord server