Get the application constants.

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://openapi.logto.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto API references MCP server": {
  "url": "https://openapi.logto.io/mcp"
}
Close
GET /api/systems/application

Get the application constants.

Responses

  • 200 application/json

    The application constants.

    Hide response attribute Show response attribute object
    • protectedApps object Required
      Hide protectedApps attribute Show protectedApps attribute object
      • defaultDomain string Required
  • 401

    Unauthorized

  • 403

    Forbidden

  • 501

    Not Implemented

GET /api/systems/application
curl \
 --request GET 'https://[tenant_id].logto.app/api/systems/application' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "protectedApps": {
    "defaultDomain": "string"
  }
}