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
Parameters
Section titled “Parameters”This tool takes no parameters.
Returns
Section titled “Returns”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.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "get_tenant_settings", "arguments": {}}Response
Section titled “Response”{ "tenant_id": "11111111-1111-1111-1111-111111111111", "name": "Acme Inc.", "slug": "acme", "plan": "pro"}- Module:
Admin - Requires authentication via API token or Auth0 JWT.