Get CIMD config

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/configs/cimd

Get the tenant-level OAuth Client ID Metadata Document (CIMD) configuration. A missing configuration resolves to the disabled state.

Responses

  • 200 application/json

    The CIMD configuration.

    Hide response attribute Show response attribute object
    • enabled boolean Required
  • 401

    Unauthorized

  • 403

    Forbidden

GET /api/configs/cimd
curl \
 --request GET 'https://[tenant_id].logto.app/api/configs/cimd' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "enabled": true
}