List all the supported SSO connector provider details

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/logto/doc/logto-management-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto Management API MCP server": {
  "url": "https://bump.sh/logto/doc/logto-management-api/mcp"
}
Close
GET /api/sso-connector-providers

Get a complete list of supported SSO connector providers.

Responses

  • 200 application/json

    A list of SSO provider data.

    Hide response attributes Show response attributes object
    • providerName string Required

      Values are OIDC, SAML, AzureAD, GoogleWorkspace, Okta, or AzureAdOidc.

    • providerType string Required

      Values are oidc or saml.

    • logoDark string Required
    • description string Required
    • name string Required
  • 401

    Unauthorized

  • 403

    Forbidden

GET /api/sso-connector-providers
curl \
 --request GET 'https://[tenant_id].logto.app/api/sso-connector-providers' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "providerName": "OIDC",
    "providerType": "oidc",
    "logo": "string",
    "logoDark": "string",
    "description": "string",
    "name": "string"
  }
]