| title | Single Sign-On (SSO) |
|---|---|
| description | Configure SAML 2.0 or OIDC-based single sign-on for your organization |
import { Callout } from 'fumadocs-ui/components/callout' import { Tab, Tabs } from 'fumadocs-ui/components/tabs' import { FAQ } from '@/components/ui/faq'
Single Sign-On lets your team sign in to Sim through your company's identity provider instead of managing separate passwords. Sim supports both OIDC and SAML 2.0.
Sim Cloud: Enterprise plan. You must be a workspace owner or admin.
Self-hosted: Set SSO_ENABLED=true and NEXT_PUBLIC_SSO_ENABLED=true in your environment. No plan requirement.
Go to Settings → Enterprise → Single Sign-On in your workspace.
| Protocol | Use when |
|---|---|
| OIDC | Your IdP supports OpenID Connect — Okta, Microsoft Entra ID, Auth0, Google Workspace |
| SAML 2.0 | Your IdP is SAML-only — ADFS, Shibboleth, or older enterprise IdPs |
Fields required for both protocols:
| Field | What to enter |
|---|---|
| Provider ID | A short slug identifying this connection, e.g. okta or azure-ad. Letters, numbers, and dashes only. |
| Issuer URL | The identity provider's issuer URL. Must be HTTPS. |
| Domain | Your organization's email domain, e.g. company.com. Users with this domain will be routed through SSO at sign-in. |
OIDC additional fields:
| Field | What to enter |
|---|---|
| Client ID | The application client ID from your IdP. |
| Client Secret | The client secret from your IdP. |
| Scopes | Comma-separated OIDC scopes. Default: openid,profile,email. |
SAML additional fields:
| Field | What to enter |
|---|---|
| Entry Point URL | The IdP's SSO service URL where Sim sends authentication requests. |
| Identity Provider Certificate | The Base-64 encoded X.509 certificate from your IdP for verifying assertions. |
The Callback URL shown in the form is the endpoint your identity provider must redirect users back to after authentication. Copy it and register it in your IdP before saving.
OIDC providers (Okta, Microsoft Entra ID, Google Workspace, Auth0):
https://simstudio.ai/api/auth/sso/callback/{provider-id}
SAML providers (ADFS, Shibboleth):
https://simstudio.ai/api/auth/sso/saml2/callback/{provider-id}
For self-hosted, replace simstudio.ai with your instance hostname.
Click Save. To test, sign out and use the Sign in with SSO button on the login page. Enter an email address at your configured domain — Sim will redirect you to your identity provider.
<Tabs items={['Okta', 'Microsoft Entra ID', 'Google Workspace', 'ADFS']}>
In Okta (official docs):
- Go to Applications → Create App Integration
- Select OIDC - OpenID Connect, then Web Application
- Set the Sign-in redirect URI to your Sim callback URL:
https://simstudio.ai/api/auth/sso/callback/okta - Under Assignments, grant access to the relevant users or groups
- Copy the Client ID and Client Secret from the app's General tab
- Your Okta domain is the hostname of your admin console, e.g.
dev-1234567.okta.com
In Sim:
| Field | Value |
|---|---|
| Provider Type | OIDC |
| Provider ID | okta |
| Issuer URL | https://dev-1234567.okta.com/oauth2/default |
| Domain | company.com |
| Client ID | From Okta app |
| Client Secret | From Okta app |
In Azure (official docs):
- Go to Microsoft Entra ID → App registrations → New registration
- Under Redirect URI, select Web and enter your Sim callback URL:
https://simstudio.ai/api/auth/sso/callback/azure-ad - After registration, go to Certificates & secrets → New client secret and copy the value immediately — it won't be shown again
- Go to Overview and copy the Application (client) ID and Directory (tenant) ID
In Sim:
| Field | Value |
|---|---|
| Provider Type | OIDC |
| Provider ID | azure-ad |
| Issuer URL | https://login.microsoftonline.com/{tenant-id}/v2.0 |
| Domain | company.com |
| Client ID | Application (client) ID |
| Client Secret | Secret value |
In Google Cloud Console (official docs):
- Go to APIs & Services → Credentials → Create Credentials → OAuth 2.0 Client ID
- Set the application type to Web application
- Add your Sim callback URL to Authorized redirect URIs:
https://simstudio.ai/api/auth/sso/callback/google-workspace - Copy the Client ID and Client Secret
In Sim:
| Field | Value |
|---|---|
| Provider Type | OIDC |
| Provider ID | google-workspace |
| Issuer URL | https://accounts.google.com |
| Domain | company.com |
| Client ID | From Google Cloud Console |
| Client Secret | From Google Cloud Console |
In ADFS (official docs):
- Open AD FS Management → Relying Party Trusts → Add Relying Party Trust
- Choose Claims aware, then Enter data about the relying party manually
- Set the Relying party identifier (Entity ID) to your Sim base URL:
For self-hosted, use your instance's base URL (e.g.
https://simstudio.aihttps://sim.company.com) - Add an endpoint: SAML Assertion Consumer Service (HTTP POST) with the URL:
For self-hosted:
https://simstudio.ai/api/auth/sso/saml2/callback/adfshttps://sim.company.com/api/auth/sso/saml2/callback/adfs - Export the Token-signing certificate from Certificates: right-click → View Certificate → Details → Copy to File, choose Base-64 encoded X.509 (.CER). The
.cerfile is PEM-encoded — rename it to.pembefore pasting its contents into Sim. - Note the ADFS Federation Service endpoint URL (e.g.
https://adfs.company.com/adfs/ls)
In Sim:
| Field | Value |
|---|---|
| Provider Type | SAML |
| Provider ID | adfs |
| Issuer URL | https://simstudio.ai |
| Domain | company.com |
| Entry Point URL | https://adfs.company.com/adfs/ls |
| Certificate | Contents of the .pem file |
Once SSO is configured, users with your domain (company.com) can sign in through your identity provider:
- User goes to
simstudio.aiand clicks Sign in with SSO - They enter their work email (e.g.
alice@company.com) - Sim redirects them to your identity provider
- After authenticating, they are returned to Sim and added to your organization automatically
- They land in the workspace
Users who sign in via SSO for the first time are automatically provisioned and added to your organization — no manual invite required.
Password-based login remains available. Forcing all organization members to use SSO exclusively is not yet supported. **Self-hosted:** Automatic organization provisioning requires `ORGANIZATIONS_ENABLED=true` in addition to `SSO_ENABLED=true`. Without it, SSO authentication still works — users get a valid session — but they are not automatically added to an organization.<FAQ items={[ { question: "Which SSO providers are supported?", answer: "Any identity provider that supports OIDC or SAML 2.0. This includes Okta, Microsoft Entra ID (Azure AD), Google Workspace, Auth0, OneLogin, JumpCloud, Ping Identity, ADFS, Shibboleth, and more." }, { question: "What is the Domain field used for?", answer: "The domain (e.g. company.com) is how Sim routes users to the right identity provider. When a user enters their email on the SSO sign-in page, Sim matches their email domain to a registered SSO provider and redirects them there." }, { question: "Do I need to provide OIDC endpoints manually?", answer: "No. For OIDC providers, Sim automatically fetches the authorization, token, and JWKS endpoints from the discovery document at {issuer}/.well-known/openid-configuration. You only need to provide the issuer URL." }, { question: "What happens when a user signs in with SSO for the first time?", answer: "Sim creates an account for them automatically and adds them to your organization. No manual invite is needed. They are assigned the member role by default." }, { question: "Can I still use email/password login after enabling SSO?", answer: "Yes. Enabling SSO does not disable password-based login. Users can still sign in with their email and password if they have one. Forced SSO (requiring all users on the domain to use SSO) is not yet supported." }, { question: "Who can configure SSO on Sim Cloud?", answer: "Organization owners and admins can configure SSO. You must be on the Enterprise plan." }, { question: "What is the Callback URL?", answer: "The Callback URL (also called Redirect URI or ACS URL) is the endpoint in Sim that receives the authentication response from your identity provider. For OIDC providers it follows the format: https://simstudio.ai/api/auth/sso/callback/{provider-id}. For SAML providers it is: https://simstudio.ai/api/auth/sso/saml2/callback/{provider-id}. You must register this URL in your identity provider before SSO will work." }, { question: "How do I update or replace an existing SSO configuration?", answer: "Open Settings → Enterprise → Single Sign-On and click Edit. Update the fields and save. The existing provider configuration is replaced." } ]} />
Self-hosted deployments use environment variables instead of the billing/plan check.
# Required
SSO_ENABLED=true
NEXT_PUBLIC_SSO_ENABLED=true
# Required if you want users auto-added to your organization on first SSO sign-in
ORGANIZATIONS_ENABLED=true
NEXT_PUBLIC_ORGANIZATIONS_ENABLED=trueYou can register providers through the Settings UI (same as cloud) or by running the registration script directly against your database.
Use this when you need to register an SSO provider without going through the UI — for example, during initial deployment or CI/CD automation.
# OIDC example (Okta)
SSO_ENABLED=true \
NEXT_PUBLIC_APP_URL=https://your-instance.com \
SSO_PROVIDER_TYPE=oidc \
SSO_PROVIDER_ID=okta \
SSO_ISSUER=https://dev-1234567.okta.com/oauth2/default \
SSO_DOMAIN=company.com \
SSO_USER_EMAIL=admin@company.com \
SSO_OIDC_CLIENT_ID=your-client-id \
SSO_OIDC_CLIENT_SECRET=your-client-secret \
bun run packages/db/scripts/register-sso-provider.ts# SAML example (ADFS)
SSO_ENABLED=true \
NEXT_PUBLIC_APP_URL=https://your-instance.com \
SSO_PROVIDER_TYPE=saml \
SSO_PROVIDER_ID=adfs \
SSO_ISSUER=https://your-instance.com \
SSO_DOMAIN=company.com \
SSO_USER_EMAIL=admin@company.com \
SSO_SAML_ENTRY_POINT=https://adfs.company.com/adfs/ls \
SSO_SAML_CERT="-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----" \
bun run packages/db/scripts/register-sso-provider.tsThe script outputs the callback URL to configure in your IdP once it completes.
To remove a provider:
SSO_USER_EMAIL=admin@company.com \
bun run packages/db/scripts/deregister-sso-provider.ts