By Sagar Shankaran, Founder of CallSphere
How a zero trust architecture for Claude agents fits together end to end: agent identity, policy decision points, MCP brokers, and per-action authorization.
Key takeaways
Most agent security failures don't come from a clever jailbreak. They come from an agent that was implicitly trusted because it ran inside your network, held a long-lived token, and got to call whatever tool it wanted. The moment a Claude agent can read a customer record, send an email, and run a shell command without anyone re-checking who is asking, on whose behalf, and for what, you have an insider threat that never sleeps. Zero trust exists to delete that implicit trust — and applying it to agentic systems means rethinking where the trust boundaries actually sit.
This post walks the full architecture: every component that has to exist between a user typing a prompt and a Claude agent mutating production state, and how those components hand decisions to each other. The goal is a mental model you can hold in your head, not a checklist.
Traditional network security assumes a trusted interior. Once a request is inside the firewall, it's mostly free to roam. That assumption was already shaky for microservices, but an LLM agent demolishes it. The agent's next action is decided by a model reasoning over untrusted text — a user message, a web page it fetched, a document in a RAG index. Any of that text can attempt to steer the agent. So the thing deciding what to do next is, by construction, partially controlled by the outside world.
Zero trust for AI agents is the security model where no agent action is trusted by default; every tool call is authenticated, authorized against an explicit policy, and scoped to the minimum permission needed, regardless of where the agent runs. The critical shift from human-centric zero trust is that the identity doing the work is not a person — it's a non-human principal acting on a delegated behalf-of relationship, and the intent is generated, not typed.
That means two new things must be first-class: agent identity (the agent is its own principal with its own credentials) and action provenance (every call carries who delegated it and why). Build the architecture around those two ideas and most other controls fall into place.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
Picture a Claude agent built on the Claude Agent SDK that handles support tickets. A request flows through six logical stations. First, an identity layer mints a short-lived, narrowly-scoped credential for this specific run. Second, the agent runtime (the SDK loop calling Claude Opus or Sonnet) reasons and emits a tool-use request. Third, a policy decision point (PDP) evaluates that request against rules. Fourth, an MCP broker sits in front of every Model Context Protocol server and enforces the decision. Fifth, the actual tool or data source executes. Sixth, an audit sink records the signed decision and outcome.
flowchart TD
A["User / upstream system"] --> B["Identity layer: mint short-lived agent token"]
B --> C["Claude agent runtime (Agent SDK loop)"]
C -->|tool_use request| D{"Policy Decision Point"}
D -->|deny| E["Block & log, return safe error to model"]
D -->|allow + constraints| F["MCP broker enforces scope"]
F --> G["MCP server / tool executes"]
G --> H["Audit sink: signed decision & result"]
H --> CThe arrows that matter most are the two loops back into the runtime. A denied call returns a structured, safe error to Claude — not a stack trace, not silence — so the model can adapt without learning anything sensitive about why it was blocked. An allowed call returns through the broker so the result itself can be inspected before it re-enters the context window, which is where prompt injection payloads love to hide.
If you get identity wrong, nothing else holds. Each agent run should receive its own credential, ideally a signed token (a JWT or workload identity certificate) carrying three claims: the agent's stable identity, the human or system it acts on behalf of, and the session scope. Make these tokens short-lived — minutes, not days — so a leaked credential is a small blast radius. Long-lived API keys baked into an agent's environment are the single most common zero trust violation in real deployments.
The behalf-of claim is what lets downstream policy reason about delegation. A support agent acting for a tier-1 rep should not be able to issue refunds above the rep's own limit. The token carries the rep's identity; the PDP looks up the rep's entitlements and intersects them with the agent's own allowed action set. The effective permission is the intersection, never the union. This is least privilege expressed as set algebra, and it's the most important rule in the whole architecture.
Separating deciding from enforcing keeps the system auditable. The PDP is pure: given a request, a context, and a policy, it returns allow or deny plus constraints ("allowed, but only for orders in region US, capped at $200"). It holds no connections and mutates nothing, so you can test it exhaustively and even run it as a sidecar. The MCP broker is the enforcement point — it's the only component with real credentials to the backing systems, and it refuses to act without a fresh signed decision from the PDP.
This split is what makes MCP a good fit for zero trust. Because every tool already speaks a uniform protocol, you can wrap all of them behind one broker that speaks that same protocol to Claude and translates allow/deny into actual scoping. The broker rewrites overbroad calls into constrained ones, strips fields the policy says the agent shouldn't see, and tags the call with the session so the audit trail is complete. Claude never holds a database password; it holds a tool name and the broker holds the keys.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
The most useful exercise when designing this system is to draw the boundaries where data crosses from trusted to untrusted. There are three. The first is between the user input and the agent — assume all input is adversarial. The second is between tool outputs and the context window — a fetched web page or a returned document is untrusted and can carry injected instructions, so it should be clearly framed as data, not directives. The third is between the agent's intent and the real world — the PDP/broker pair. Many teams defend the first boundary heavily and forget the second entirely, which is exactly how indirect prompt injection turns a read-only agent into a data-exfiltration tool.
A clean architecture treats each boundary with the same skepticism. Inputs are quarantined and labeled. Tool results are quarantined and labeled. And no model token, however confident, becomes a real action without passing the broker. When you can point at all three boundaries on a whiteboard and name the control on each, you have a zero trust agent architecture rather than a hopeful one.
The identity and audit pieces are worth it even for one agent, because they're cheap and they're what you'll wish you had during an incident. The full PDP/broker split pays off once an agent can mutate anything that matters — payments, customer data, infrastructure. A read-only research agent needs far less than one that can spend money.
OAuth scopes are a building block, not the whole model. Zero trust adds per-action evaluation with runtime context (the agent's generated intent, the behalf-of chain, the current session risk), and it treats tool outputs as untrusted re-entry points. Static scopes alone can't catch an agent that's been hijacked mid-conversation into misusing a legitimately-scoped tool.
A well-built PDP evaluates in single-digit milliseconds because it's pure computation over cached policy and entitlements. The broker adds one network hop. Against the hundreds of milliseconds to seconds a Claude tool-use turn already takes, the overhead is noise — and it's concentrated only on tool calls, not on every model token.
CallSphere builds the same defense-in-depth into voice and chat agents — assistants that authenticate every action and book real work for your business around the clock. See how it runs in production at callsphere.ai.
Source & attribution: This is an independent, original explainer inspired by Anthropic's coverage on the Claude blog. Claude, Claude Code, Claude Cowork, Claude Opus, and the Model Context Protocol are products and trademarks of Anthropic. CallSphere is not affiliated with or endorsed by Anthropic.

Written by
Sagar Shankaran· Founder, CallSphere
LinkedInSagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
Least privilege for AI agents at a regional carrier: scoped logins, no rights in the porting queue or 911 records, and a human on every irreversible action.
An AI agent in a lending shop should read widely, write to the conditions log, and send nothing with a routing number. The permissions to remove this Monday.
One reschedule text hits your scheduler, package balance, tutor shift and invoice. Here is what MCP changed for tutoring and test-prep center owners in 2026.
Anthropic's Claude Fable 5 and Mythos 5 explained: pricing, availability, frontier benchmarks, the dual-model safeguard architecture, and what they mean for AI agents.
Where Claude Code, MCP, and multi-agent systems are taking GTM engineering next, and how to prepare your team now for standing and multi-agent workflows.
Where Claude Cowork and the Claude agent ecosystem are heading next — standing agents, MCP, skills as a moat — and the concrete moves to prepare your team now.
© 2026 CallSphere Inc. All rights reserved.
Made within San Francisco
Watch how CallSphere handles real customer calls, schedules appointments, and processes payments — live.
Try Live DemoBook a DemoCalculate Your ROI