Federated connections are managed at
claude.ai/admin-settings/claude-tag: open Federated cloud access in the left navigation. Connecting a gateway, cloud role, or authorization server needs an organization Owner, or an admin with full Claude Tag management permission.Choose a connection type
In every case the system on your side decides what the agent may do in your systems. Each connection type has its own setup page: Connect a gateway, Connect an AWS role, Connect a Google Cloud identity, and Connect an authorization server.
How it works
- When a request from Claude’s sandbox needs one of your systems, Agent Proxy matches it by destination to a federated connection in one of the channel’s Access bundles. Until an admin connects a system in Federated cloud access and adds it to a bundle attached to the channel, nothing matches and no token is issued for Claude’s requests.
- Anthropic issues an identity token. The token is a JSON Web Token (JWT) signed by Anthropic and valid for 10 minutes. Its subject names your organization and the agent, in the form
wimse://identity.anthropic.com/org/<your organization ID>/agent/<agent ID>, and its audience names the destination. Claude reuses one token for a session’s requests to the same gateway for about five minutes, or until the gateway answers 401, and then requests a new one. The other connection types use a token once, in an exchange. - Your side accepts the token. A gateway verifies it directly. AWS or Google Cloud exchanges it for a short-lived cloud credential. Your authorization server exchanges it for an access token. Agent Proxy attaches the result to Claude’s request, or signs the request with it for AWS, and forwards the request. The model and the sandbox are never given the token or the credential that comes back.
- Signature, against the public keys Anthropic publishes, and issuer. Together these prove Anthropic issued the token.
- Audience. This proves the token was issued for the destination it’s presented to: your gateway, your authorization server, your Google Cloud provider, or AWS.
- Expiry. This proves the token is fresh.
- Subject. This is what names your organization. Every Claude Tag organization’s tokens come from the same issuer, and every organization’s AWS tokens share the same audience, so the first four checks can pass for a token that belongs to someone else. Every connection type therefore requires a subject check. The strongest form accepts only the exact subjects of your own agents. The minimum form requires the subject to start with your Subject prefix,
wimse://identity.anthropic.com/org/<your organization ID>/agent/, including the/agent/; a gateway, authorization server, or Google Cloud attribute condition can pinissandtenantinstead, sincetenantcarries the same organization ID.
Anthropic doesn’t review your gateway, trust policy, or authorization server. When you connect a gateway, the console offers a connection check that confirms the gateway rejects a token whose subject isn’t your organization. The other connection types have no check in the console, so you verify them yourself with the steps on each setup page.
Before you begin
- Federated cloud access appears in the console’s left navigation. It’s missing for organizations whose compliance configuration excludes federated cloud access.
- An organization Owner, or an admin with full Claude Tag management permission, makes the connection in the console.
- Your cloud or gateway administrator configures the system on your side: the gateway operator, your AWS or Google Cloud IAM administrator, or your authorization server’s operator. Each setup page lists the values they configure.
- An Access bundle is attached to the scope of the channels where Claude should use the connection. A connection can be in only one bundle, so to use a connection in several places, attach that bundle to each scope.
Related resources
- How agent identity works: the identity these tokens represent, and how Agent Proxy attaches credentials
- Connect a gateway: verify the token at a service you run
- Connect an AWS role: the IAM OIDC provider and trust policy
- Connect a Google Cloud identity: the workload identity pool, provider, and attribute condition
- Connect an authorization server: accept the token as a JWT bearer grant
- Identity token reference: every claim, the lifetime, and key rotation
- Limits: counts, lengths, lifetimes, and unsupported configurations
- Troubleshoot federated cloud access: console messages, blocked requests, and rejections in your logs