We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Matthew-Wise/umbraco-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
currentUserResponseModel.ts•1.06 kB
/**
* Generated by orval v7.8.0 🍺
* Do not edit manually.
* Umbraco Management API
* This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
* OpenAPI spec version: Latest
*/
import type { ReferenceByIdModel } from './referenceByIdModel.js';
import type { CurrentUserResponseModelPermissionsItem } from './currentUserResponseModelPermissionsItem.js';
export interface CurrentUserResponseModel {
email: string;
userName: string;
name: string;
userGroupIds: ReferenceByIdModel[];
id: string;
/** @nullable */
languageIsoCode: string | null;
documentStartNodeIds: ReferenceByIdModel[];
hasDocumentRootAccess: boolean;
mediaStartNodeIds: ReferenceByIdModel[];
hasMediaRootAccess: boolean;
avatarUrls: string[];
languages: string[];
hasAccessToAllLanguages: boolean;
hasAccessToSensitiveData: boolean;
fallbackPermissions: string[];
permissions: CurrentUserResponseModelPermissionsItem[];
allowedSections: string[];
isAdmin: boolean;
}