> ## Documentation Index
> Fetch the complete documentation index at: https://docs.staging.alpic.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# OAuth Providers

> List of popular Identity Providers (IdP) and their corresponding configuration endpoints.

Here is a list of popular Identity Providers (IdP) and their corresponding configuration endpoints.
Those endpoints are public and contain informations that you'll need to configure properly your MCP server OAuth protection.

<Tip>OpenID Connect (OIDC) is a superset of OAuth 2.0 - if a platform is OIDC compliant, it's OAuth 2.0 compliant.</Tip>

# OpenID Connect (OIDC) compliant Providers

These providers are popular IdPs compliant with OpenID Connect.

You can use them as identity pools for your MCP server (meaning you don't have to own yourself a database of users, you can instead simply gate access to your MCP server with these identity providers).

<Warning>
  None of these providers have Dynamic Client Registration enabled. You'll need to use [Alpic DCR
  proxy](/secure/auth/oauth-setup#using-an-oauth-2-0-compatible-identity-provider-idp) in order to use them as valid
  identity providers for your MCP server.
</Warning>

| Identity Provider | OpenID Connect Configuration Well-Known Endpoint                                                                                                                 |
| :---------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Apple             | [https://account.apple.com/.well-known/openid-configuration](https://account.apple.com/.well-known/openid-configuration)                                         |
| Coinbase          | [https://login.coinbase.com/.well-known/openid-configuration](https://login.coinbase.com/.well-known/openid-configuration)                                       |
| Discord           | [https://discord.com/.well-known/openid-configuration](https://discord.com/.well-known/openid-configuration)                                                     |
| Dropbox           | [https://www.dropbox.com/.well-known/openid-configuration](https://www.dropbox.com/.well-known/openid-configuration)                                             |
| Facebook          | [https://www.facebook.com/.well-known/openid-configuration](https://www.facebook.com/.well-known/openid-configuration)                                           |
| Github            | [https://github.com/login/oauth/.well-known/openid-configuration](https://github.com/login/oauth/.well-known/openid-configuration)                               |
| GitLab            | [https://gitlab.com/.well-known/openid-configuration](https://gitlab.com/.well-known/openid-configuration)                                                       |
| Google            | [https://accounts.google.com/.well-known/openid-configuration](https://accounts.google.com/.well-known/openid-configuration)                                     |
| Hugging Face      | [https://huggingface.co/.well-known/openid-configuration](https://huggingface.co/.well-known/openid-configuration)                                               |
| Kakao             | [https://kauth.kakao.com/.well-known/openid-configuration](https://kauth.kakao.com/.well-known/openid-configuration)                                             |
| Line              | [https://access.line.me/.well-known/openid-configuration](https://access.line.me/.well-known/openid-configuration)                                               |
| LinkedIn          | [https://www.linkedin.com/oauth/.well-known/openid-configuration](https://www.linkedin.com/oauth/.well-known/openid-configuration)                               |
| Microsoft         | [https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration](https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration) |
| Salesforce        | [https://login.salesforce.com/.well-known/openid-configuration](https://login.salesforce.com/.well-known/openid-configuration)                                   |
| Slack             | [https://slack.com/.well-known/openid-configuration](https://slack.com/.well-known/openid-configuration)                                                         |
| Spotify           | [https://accounts.spotify.com/.well-known/openid-configuration](https://accounts.spotify.com/.well-known/openid-configuration)                                   |
| Twitch            | [https://id.twitch.tv/oauth2/.well-known/openid-configuration](https://id.twitch.tv/oauth2/.well-known/openid-configuration)                                     |
| Xero              | [https://identity.xero.com/.well-known/openid-configuration](https://identity.xero.com/.well-known/openid-configuration)                                         |

# Identity Management Platforms

You'll find below the most popular IdPs compliant with OAuth 2.1. You can use them to provision your own user pools for your MCP server.

|                 Identity Management Platform                | OpenID Connect Configuration Well-Known Endpoint                                             |
| :---------------------------------------------------------: | :------------------------------------------------------------------------------------------- |
|                            Auth0                            | `https://{tenant}.us.auth0.com/.well-known/openid-configuration`                             |
|                        Amazon Cognito                       | `https://cognito-idp.{region}.amazonaws.com/{user-pool-id}/.well-known/openid-configuration` |
|                            Clerk                            | `https://{tenant}.clerk.accounts.dev/.well-known/openid-configuration`                       |
| Google Identity Platform (formerly Firebase Authentication) | `https://securetoken.google.com/{tenant}/.well-known/openid-configuration`                   |
|                            Logto                            | `https://{tenant}.logto.app/.well-known/openid-configuration`                                |
|            Microsoft Entra ID (formerly Azure AD)           | `https://login.microsoftonline.com/{tenant}/v2.0/.well-known/openid-configuration`           |
|                             Okta                            | `https://{tenant}.okta.com/.well-known/openid-configuration`                                 |
|                            Stytch                           | `https://{tenant}.customers.stytch.com/.well-known/openid-configuration`                     |
|                            WorkOS                           | `https://{tenant}.authkit.app/.well-known/openid-configuration`                              |

<Tip>
  You might want to try `https://{your - domain}/.well-known/openid-configuration` instead of the provider specific URL
  if a custom domain has been setup on your Identity Management Platform.
</Tip>

# Other Identity Providers

You can use any IdP to configure authorization on your MCP server.

Use the login page domain to discover `/.well-known/oauth-authorization-server` endpoint.

For exemple, you can login to `Box` using `https://account.box.com/login`. Box's OAuth Authorization Server metadata endpoint is `https://account.box.com/.well-known/oauth-authorization-server`
