Skip to content

get_tenant_settings

Return current tenant configuration. Requires Owner role. Returns: tenant_id (str) — tenant UUID; name (str) — tenant display name; slug (str) — URL-safe tenant identifier; plan (str) — current subscription plan.

read-only · idempotent

This tool takes no parameters.

Returns a structured object. Top-level fields:

  • tenant_id (string)
  • name (string)
  • slug (string)
  • plan (string)

See the response example below for the full payload shape.

{
"name": "get_tenant_settings",
"arguments": {}
}
{
"tenant_id": "11111111-1111-1111-1111-111111111111",
"name": "Acme Inc.",
"slug": "acme",
"plan": "pro"
}
  • Module: Admin
  • Requires authentication via API token or Auth0 JWT.