Get enabled SSO connectors by the given email's domain

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-experience-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto Experience API MCP server": {
  "url": "https://bump.sh/logto/doc/logto-experience-api/mcp"
}
Close
GET /api/experience/sso-connectors

Extract the email domain from the provided email address. Returns all the enabled SSO connectors that match the email domain.

Query parameters

  • email string(email) Required

    The email address to find the enabled SSO connectors.

Responses

  • 200 application/json

    The enabled SSO connectors have been successfully retrieved.

    Hide response attribute Show response attribute object
    • connectorIds array[string] Required

      The list of enabled SSO connectorIds. Returns an empty array if no enabled SSO connectors are found.

  • 400

    The email address is invalid, can not extract a valid domain from it.

GET /api/experience/sso-connectors
curl \
 --request GET 'https://[tenant_id].logto.app/api/experience/sso-connectors?email=hello%40example.com'
Response examples (200)
{
  "connectorIds": [
    "string"
  ]
}