Enterprise Managed Auth is in beta and is available on Claude Team and Enterprise plans. Organizations can join the waitlist to request access. MCP server developers and identity provider vendors can register interest in supporting this flow.
This page is for connector developers who need their authorization server to accept Enterprise Managed Auth. Identity provider setup and Claude admin console configuration are handled by the customer’s administrator.
How it works
When a user whose organization has Enterprise Managed Auth configured invokes your connector, Claude obtains a signed identity assertion for that user and exchanges it directly at your token endpoint for an access token. The user never sees a browser redirect or a consent screen, and your MCP server receives the same kind of bearer token it would after the interactive OAuth flow. Two parties are involved in this exchange: the customer’s identity provider signs the assertion, and your authorization server verifies it and issues the access token. Both roles are often served by commercial identity platforms, so the distinction here is about which tenant plays which role rather than about product type. The identity provider publishes its signing keys as a JSON Web Key Set, and your authorization server fetches that key set to verify each assertion.Prerequisites
Before adding Enterprise Managed Auth, make sure the following are already in place.- Your MCP server implements MCP authorization, including Protected Resource Metadata (PRM) discovery, and follows the MCP security best practices. See our authentication guide for Claude-specific requirements.
- Your authorization server registers Claude using either Anthropic-held client credentials or a Client ID Metadata Document.
Authorization server requirements
This section is for the authorization server operator. If your MCP server relies on a hosted identity platform, there is typically no code to write. Confirm that the platform supports the JWT bearer authorization grant and enable it for your tenant. If you run your own authorization server, the steps below describe what it needs to support.
Ensure the JWT bearer grant is supported
Your authorization server must accept Claude reads this metadata to discover whether your server supports Enterprise Managed Auth. The grant type must be listed here for the feature to be offered to the customer, even if your token endpoint would already accept it silently.
urn:ietf:params:oauth:grant-type:jwt-bearer at its token endpoint and advertise it in the grant_types_supported array of its authorization server metadata (RFC 8414):Register the trusted issuer
For each customer, your authorization server needs to trust that customer’s identity provider as a JWT issuer. Your authorization server fetches the identity provider’s JSON Web Key Set and uses it to verify the signature on every incoming assertion.Your authorization server is responsible for maintaining an explicit allowlist of trusted issuer URLs per tenant rather than accepting any well-formed JWT. An assertion whose
iss is not on the tenant’s allowlist must be rejected with invalid_grant, even if the signature is valid.Understand the token request
Claude sends a form-encoded The
POST to your authorization server’s token endpoint:assertion parameter carries the signed JWT. The client_id is the value Claude is registered under at your authorization server. Claude also includes the resource parameter (Resource Indicators, RFC 8707) set to your MCP server URL whenever the customer’s identity provider supports forwarding it. Some identity provider configurations cannot pass a resource indicator through, so your authorization server should accept the request whether or not resource is present and use it for audience binding when it is.Your authorization server validates the assertion according to the JWT bearer token processing rules (RFC 7523 section 3) and returns a standard OAuth token response. Claude then presents the returned access token as a Bearer credential on calls to your MCP server, exactly as it does after the interactive flow.The access token lifetime is set by your authorization server, and the assertion lifetime is set by the customer’s identity provider. Anthropic does not control either value.
Testing your implementation
End-to-end testing requires a Claude organization with Enterprise Managed Auth enabled and an identity provider tenant configured to issue assertions for your authorization server’s audience.If the customer’s identity provider is Okta, refer to Okta’s Cross App Access participation guide for the tenant configuration steps.
Enterprise Managed Auth is in beta. Register interest to get onboarded for testing.
Related resources
Authentication for connectors
Baseline OAuth requirements your server must already meet.
Lazy authentication
Defer OAuth until a protected tool is actually invoked.
Testing your connector
Verify your connector works end to end in Claude.
Troubleshooting
Diagnose common authentication and connection issues.