Hello Tod Jolayemi,
Thank you for posting your query in the Microsoft Q&A Community.
I am not sure of the CLI command but take a look at the command provided by Miguel Gonçalves
However, in case you would like to use a PowerShell script to complete this, then the below should work for you.
Install-Module MSOnline
Connect-MsolService
Get-MsolUser -All | Select-Object DisplayName, UserPrincipalName, @{N="MFA Status"; E={ if($_.StrongAuthenticationRequirements.State -ne $null) { $_.StrongAuthenticationRequirements.State } else { "Disabled" } }}
Let me know if further assistance is needed.
Babafemi