mcp-authority-boundary
mcp-authority-boundary
Correct mediation is not sufficient: separating enforcement, authorization-execution binding, and policy adequacy at the MCP tool boundary.
Every test passed. The replay verifier said VERIFIED. The mediation invariant held. And a 100,000-byte write went through a policy that capped writes at 4,096 bytes.
That is not a story about a bug. It is the artifact's result. Authorization assurance has layers that fail independently, and the usual green signals cannot tell them apart.
Abstract
Authorization at an AI agent's tool boundary is usually treated as one property: either the policy engine is in the path or it is not. This artifact separates it into properties that fail independently. A Cedar-enforced Model Context Protocol server mediates six tools across 25 adversarial scenarios, recording every decision in a hash-chained ledger with an independent replay verifier.
The first version passed 66 tests, replayed as VERIFIED, and satisfied a checked complete-mediation invariant, while a 100,000-byte write executed under a 4,096-byte policy limit. The resolver measured the payload as a string and substituted zero bytes for a non-string; the executor coerced the same argument and wrote it. Both read the raw input independently, so the engine authorized a request that did not describe the operation.
The repair binds execution to one validated immutable operation. Two unfixed counterexamples are retained, showing that enforcement correctness does not establish policy adequacy.
Related MCP server: production-grade-mcp-agentic-system
Four properties, which fail separately
The point of this repository is that these are four claims, not one.
Property | Status here | |
A | Mediation. No mediated tool executes without an | Established |
B | Binding. Execution consumes the same canonical operation Cedar authorized. | Established. Did not hold in v1. |
C | Policy adequacy. The policy expresses the authority its author intended. | Not established, deliberately. Two live counterexamples retained. |
D | Effect verification. The recorded effect matches the authorized operation. | Not established by the shipped evidence. Independent fixture read-back exists for |
Correction to v1.0.0
Released v1.0.0 stated claim D as "Effect verification. The observed effect matches the authorized operation — Established for the fixture tools only", and its replay output reported that "the effect observed in the world after execution matches the authorized operation". Both overstated the evidence.
Independent fixture read-back is implemented only for write_document and delete_file, and the v1.0.0 ledger executed neither: its seven stage-4 checks were read_document ×5, execute_shell ×1 and send_email ×1. Every stage-4 check shipped in v1.0.0 was therefore record-consistency, not independent effect observation.
Claims A, B and C are unaffected and stand as released. Corrected 2026-08-14. Current claim D status is in the table above; the detail is in docs/LIMITATIONS.md L7, and test/evidence-composition.test.ts now fails the build if this combination recurs.
Correction to v1.0.0: session establishment
Released v1.0.0 read the principal as process.env['MCP_SESSION_ID'] ?? 'sess-alice-root'. A launcher that omitted the variable therefore did not fail; it ran as sess-alice-root, the highest-authority session in the entity store. An unknown session id already failed closed, so absence was the one input routed to maximum privilege rather than to refusal.
MCP_SESSION_ID is now required and has no default: an absent or blank value refuses startup with exit code 2, and an unrecognised one still fails closed at the first decision. This does not add authentication, and it does not contain a hostile local actor who can spawn the process. Whoever launches the server still chooses the session identity, and possession of the launch path remains equivalent to possession of any session named in it. Assumption A2 stands as written; the trust boundary is in docs/ASSUMPTIONS.md.
Claims A, B, C and D are unaffected. Corrected 2026-08-17. 155/155 tests pass, including startup refusal for missing and blank identities, and unchanged enforcement under explicitly supplied admin and delegated sessions; test/session-establishment.test.ts fails the build if the default returns.
A held in v1 and B did not, which is the whole finding: the gate can be perfectly enforced and still authorize the wrong thing. A and B holding says nothing about C, and says nothing about what an authorized command does outside this boundary — scenario S24, and the section below.
Why A1 matters
This is the intellectual centre of the artifact, so it comes before the architecture.
Version 1 had complete mediation in the strong sense. Tools were unreachable without a single-use grant that only the policy decision point could mint. The invariant "no tool result without an allow" was checked at runtime, again over the ledger, and again by the replay verifier. Sixty-six tests passed. Replay reported VERIFIED.
The following call, using nothing but tool arguments, wrote 100,000 bytes under a grant capped at 4,096:
{"tool": "write_document",
"args": {"path": "corp/public/notes.md", "content": ["xxxx… 100000 chars …"]}}content is an array. Two code paths read it, and they disagreed:
resolve.tsmeasured the payload withtypeof clean['content'] === 'string' ? clean['content'] : '', so a non-string became the empty string andbyteLenbecame 0.tools.tsexecutedString(a['content'] ?? ''), which coerced the array into a 100,000-character string and wrote it.
Cedar answered correctly. It was asked about a zero-byte write, and forbid-oversized-write does not fire on zero bytes. The engine, the policy, the grant and the ledger were all working. The request simply did not describe the operation.
Nothing in the verification apparatus could see this. The replay verifier re-decides the recorded request, and the recorded request is the resolver's output, so the resolver sits upstream of everything replay can check. A ledger containing this bypass replays as VERIFIED with an intact hash chain. That probe is preserved as a test.
The repair is structural, not a filter. Rejecting arrays would have closed one input and left the class open. Instead there is now exactly one place where an argument becomes a validated value, one immutable ResolvedOperation carrying every security-relevant value, and an execution layer with no access to the raw arguments at all. executeTool(op, grant) takes no args, and a test asserts over the source text that src/tools.ts contains no reference to raw arguments and performs no coercion. The grant is bound to sha256(operation) and re-checked at execution time.
The test that separates a structural repair from a patch is F1: ten non-string types across ten string-valued fields across six tools, 100 combinations, every one required to fail closed before Cedar is consulted. A filter on arrays passes one of those and fails 99.
Architecture
flowchart TD
subgraph UNTRUSTED["UNTRUSTED - attacker-controlled"]
A["Raw MCP call<br/>tool name + arguments"]
end
subgraph SERVER["MCP SERVER PROCESS - trust boundary"]
B["Validation and canonicalisation<br/>reject wrong types, never coerce<br/>NFC, traversal, control chars"]
C["ResolvedOperation<br/>immutable, deep-frozen<br/>carries every execution value"]
D["Cedar request<br/>DERIVED from the operation"]
E["Cedar decision<br/>allow / deny + determining policy ids<br/>anything else maps to DENY"]
F["Grant bound to sha256 of the operation<br/>single use, minted only by the PDP"]
G["Execution<br/>consumes the operation, no raw args"]
H["Effect record<br/>read back (2 tools) or<br/>derived from the operation (4)"]
end
subgraph EVIDENCE["EVIDENCE - after the fact, prevents nothing"]
I["Hash-chained ledger"]
J["Replay verifier<br/>4 separately reported stages"]
end
A -->|"session, clock, policy and entity store<br/>come from the host, never the model"| B
B --> C
C --> D
D --> E
E -->|allow| F
E -->|deny| I
F --> G
G --> H
H -->|"mismatch throws"| G
H --> I
I --> J
style UNTRUSTED fill:#3a1f1f,stroke:#c0554d,color:#f0e6e6
style SERVER fill:#1f2d3a,stroke:#4d8ac0,color:#e6ecf0
style EVIDENCE fill:#2a2a2a,stroke:#888888,color:#e8e8e8The gate sits inside the server, in front of tool dispatch, rather than between the client and the server. A check the calling process performs on itself is a check the calling process can decline to perform, and the agent chooses which client code runs. Scenario S14 is the negative control: a client that speaks raw JSON-RPC and imports none of this repository's client code gets the identical denial.
Results
v1 | Adversarial audit | Repaired | |
Scenarios | 24 | 24 | 24 |
Ledger entries | 26 | 26 | 26 |
Determining-policy coverage | 15/15 | 15/15 | 15/15 |
Policies (base + overlay) | 14 + 1 | 14 + 1 | 14 + 1 |
Tests | 66 pass | 80 pass (66 + 14 probes) | 100 pass |
Mediation invariant | HOLDS | HOLDS | HOLDS |
Replay | VERIFIED, one verdict | VERIFIED, with A1 live | 4 stages, all PASS |
4,096-byte write limit | bypassed, 100,000 bytes written | witness exhibited | blocked before Cedar |
Live-session expiry | never fired | witness exhibited | fires, no restart |
Revocation flipped on disk | ignored by a running process | witness exhibited | next decision denies |
The three columns are the three tagged states of the repository, not the current head. At head the run is 25 scenarios, 27 ledger entries, 149 tests, four replay stages all PASS: scenario S24, test/external-effect.test.ts and test/evidence-composition.test.ts were added after the repair and change no earlier column.
Counts are over an authored scenario set written by the same person who wrote the policies. They describe this artifact and estimate nothing about attack prevalence, real-model behaviour, or any other policy set. The measurement frame is in docs/EVIDENCE.md.
What this establishes
For every mediated tool execution, the operation executed is the same immutable, type-validated, canonicalised
ResolvedOperationfrom which the Cedar request was derived, verified at execution time by digest comparison. No mediated tool executes without anallowunder the policy version and entity-store state recorded alongside it, both read at decision time.
Assumptions. The server process, policy files, entity store, session binding and clock source are outside the adversary's control. Cedar is correct. Every addressable resource is enumerated in advance. Effects are simulated against an in-process fixture. The adversary does control the model completely, the content of every resource, the MCP client, and every tool argument.
What this does not establish
Cedar correctness. Every decision is as sound as
@cedar-policy/cedar-wasm4.12.0. Replay re-runs the same engine, so it cannot detect an engine fault.Policy adequacy. Two counterexamples are retained on purpose, and they are why claim C is listed apart:
A2:
forbid-widening-delegationcompares a session only to its immediate parent, so a faithful child of a widened parent inherits authority the root grant never had, and outlives it. The exact policy clause that would close it is written out indocs/AUDIT.md, unapplied.A6:
DELETE FROM analytics.metricsis authorized bypermit-read-tier, becausequery_databaseis classified read-only and the resolver binds a table without gating on statement class. The class is now recorded and visible in the evidence, and still not enforced.These are not unfinished work. An artifact whose every scenario is a catch would demonstrate the opposite of its own thesis.
Arbitrary real-world side effects. No shell command runs, no mail is sent, no database is queried. Claim D is scoped to a fixture world with no symlinks, races, partial writes or permissions; for four of the six tools the recorded effect is derived from the operation rather than read back at all, and the two tools that do read back are never executed in the shipped ledger.
The consequence of an authorized command. Scenario S24 and the section below.
Exhaustive adversarial coverage. 25 authored scenarios and 32 audit and falsification probes bound the search, not the world. No counterexample found is not no counterexample.
Production security. There is no authentication. Session identity is bound from the environment at spawn.
Faithful logging. A hash chain proves the file was not edited after it was written. It cannot show that the file describes what happened: anything with code execution inside the server can write a consistent chain describing events that never occurred. Truncating the tail leaves a valid prefix, and there is a test asserting exactly that.
The boundary of the boundary
Scenario S24 is the second permitted scenario, and it is in the demo output for the same reason S18 is: it marks where the claims stop.
execute_shell is authorized on a non-production host by permit-admin-tier. The command
string denotes a consequence outside this boundary. cedarRequestFromOperation maps
execute_shell to (action, Mcp::Host, byteLen 0, recipientDomain "") — the command is not a
field Cedar receives, so the Cedar request for that call is identical to the request for a
benign command on the same host, and no policy in this set, present or future, can be written
against the difference. test/external-effect.test.ts asserts that identity, asserts that both
calls draw the same verdict from the real PDP, and asserts that claims A and B hold throughout:
nothing ran without an allow, and execution consumed the operation the grant was minted for.
The operation digests differ, so binding does separate the two calls — it binds execution to
the authorized operation, and the authorized operation is the one whose consequence is
unrepresented.
Nothing in the scenario performs network access. execute_shell appends to an in-process array
and returns [simulated output]; the domain is a reserved .example name and is never
resolved. What S24 exhibits is the representation gap, not an effect.
The underlying limitation is prior work, and none of it is claimed here. An enforcement mechanism cannot constrain what it can neither observe nor control:
Schneider, Enforceable Security Policies, TISSEC 3(1), 2000 — execution monitors enforce only safety properties. The biconditional is not his: he states that "the converse — that all safety properties have EM enforcement mechanisms — does not hold".
Basin, Jugé, Klaedtke & Zălinescu, Enforceable Security Policies Revisited, POST 2012 / TISSEC 16(1), 2013 — partitions actions into controllable and only-observable, and characterises enforceability as
(U,O)-safety: informally, "P is safety in U and bad things are not caused by an only-observable action". The command's consequence is such an action for this boundary.Khoury & Hallé, Runtime Enforcement With Partial Control, FPS 2015 (arXiv:1508.06525) — generalises that partition to a lattice of control levels, with file and network operations as the worked examples, and shows the enforceable set grows monotonically as an action is moved to a level the monitor controls. Adding a lower-layer enforcement point is that move.
Ray, What Can Be Enforced? A Theory of Certified Runtime Safety for Tool-Using Agents, 2026 (arXiv:2607.22868) — the same characterisation for a pre-execution gate on agent tool calls, relative to a fixed vector of oracle predicates: what the gate cannot see, it cannot enforce.
What this repository adds is an executable demonstration. S24 and its tests are a running instance in which complete mediation and authorization-execution binding both hold, every test passes, the four replay stages all report PASS, and the containment inference still does not follow. The proposition is not this artifact's; the witness is.
Reproduce
git clone <this repo>
cd mcp-authority-boundary
npm install
./run.shNode 20.11 or newer. No API key, no network after npm install, no other toolchain. The run takes about 10 seconds on an M-series laptop.
You should see 25 scenarios, each printing the tool call, the decision, the determining Cedar policy ids and a ledger position; an unmediated baseline showing what those same calls would do without the authorization layer; then four replay stages reporting separately:
chain-integrity PASS checked 27 n/a 0 failures 0
policy-replay PASS checked 27 n/a 0 failures 0
auth-exec-binding PASS checked 25 n/a 2 failures 0
effect-consistency PASS checked 8 n/a 19 failures 0then 149 passing tests. The stages are never collapsed into a single verdict, because a single verdict is what hid A1. Corrupting one recorded observedEffect turns effect-consistency red while auth-exec-binding stays green; corrupting one recorded operation does the reverse. docs/QUICKSTART.md has the commands.
The ledger is byte-identical across runs, so git status stays clean after a fresh ./run.sh.
Layout
policies/ Cedar schema, 14 base policies plus a 1-policy revocation
overlay. Read this first; the TypeScript exists to put
requests to it.
entities/ sessions, scopes, documents, mailboxes, tables, hosts
src/ ~2500 lines of code. resolve.ts is the correspondence layer
and the place A1 lived; mediation.ts holds the grant machinery.
test/ 149 tests, including 17 audit probes (the original 14
witnesses, several now split into before/after pairs), a
15-probe post-repair falsification sweep,
external-effect.test.ts, which pins the S24 boundary, and
evidence-composition.test.ts, which guards claim D against
the ledger's actual per-tool composition
docs/ architecture, threat model, assumptions, limitations,
evidence, audit, repair
evidence/ committed, and regenerated byte-identically by ./run.shDocument | What it is for |
why the gate sits behind the transport, and the binding pipeline | |
what the adversary controls, and what is out of scope | |
the trusted base, stated as premises | |
ten limitations; read before citing | |
the numbers and their measurement frame | |
the adversarial review that falsified the v1 claim | |
what changed, and why it is structural rather than a filter | |
scenario to policy mapping, and what is out of reach |
Prior and adjacent work
Cedar is Amazon's open-source policy language. MCP is Anthropic's Model Context Protocol. Neither is claimed here. The MCPSecBench class references in the attack matrix are this author's reading of that benchmark's taxonomy; the benchmark is not run and no score against it is claimed. mcp-assurance-lab is a separate earlier artifact by the same author, in Python with hand-written policy predicates; this repository is not a port of it.
No novelty claim is made about the layering. Complete mediation is Saltzer and Schroeder, 1975. What is offered is a small executable artifact where the layers come apart in a way you can run.
License
Apache-2.0.
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
- AlicenseBqualityCmaintenanceAn MCP server that enforces runtime authorization for tool calls using Stage0 policy validation, preventing AI agents from executing unauthorized actions before they happen.6MIT
- AlicenseNot gradedqualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.57MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enforces runtime governance on AI agent actions — file access, command execution, delegation chains, and permission escalation.MIT
- FlicenseAqualityCmaintenanceMCP server that auto-emits tamper-evident receipts for every tool call, enabling EU AI Act Article 12 compliance with signed, chain-linked receipts.1
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
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/repowazdogz-droid/mcp-authority-boundary'
If you have feedback or need assistance with the MCP directory API, please join our Discord server