mcp-use TypeScript API
    Preparing search index...

    Interface Auth0OAuthUser

    Verified Auth0 user claims exposed to authenticated MCP callbacks.

    interface Auth0OAuthUser {
        email?: string;
        emailVerified?: boolean;
        id: string;
        name?: string;
        nickname?: string;
        picture?: string;
        roles: string[];
        updatedAt?: string;
    }
    Index
    email?: string

    Primary email address, when included in the access token.

    emailVerified?: boolean

    Whether Auth0 has verified Auth0OAuthUser.email.

    id: string

    Auth0 subject identifier.

    name?: string

    Display name, when included in the access token.

    nickname?: string

    Auth0 nickname, when included in the access token.

    picture?: string

    Profile image URL, when included in the access token.

    roles: string[]

    Roles from the access token's roles claim.

    updatedAt?: string

    ISO timestamp for the most recent profile update.