mcp-use TypeScript API
    Preparing search index...

    Interface SupabaseOAuthUser

    Verified Supabase user claims exposed to authenticated MCP callbacks.

    interface SupabaseOAuthUser {
        aal?: string;
        amr: SupabaseAmr[];
        avatarUrl?: string;
        email?: string;
        fullName?: string;
        id: string;
        name?: string;
        role?: string;
        sessionId?: string;
        username?: string;
    }
    Index
    aal?: string

    Authenticator assurance level for the session.

    Authentication methods used for the session.

    avatarUrl?: string

    Profile image URL from user_metadata.avatar_url.

    email?: string

    Primary email address, when included in the access token.

    fullName?: string

    Full name from user_metadata.full_name.

    id: string

    Supabase user identifier.

    name?: string

    Display name from user_metadata.name.

    role?: string

    Supabase Postgres role from the access token.

    sessionId?: string

    Supabase session identifier.

    username?: string

    Username from user_metadata.username.