Try like this
Get-VM |
Get-Snapshot|
select @{N='VMHost';E={$_.VM.VMHost.Name}},
@{N='VM';E={$_.VM.Name}},
Name, Description, Created, SizeGB
But be aware that this is not necessarily the ESXi node where the VM was running when the snapshot was taken.
This is the ESXi node where that VM is currently running.