How to list most popular post

You can easily sort by native post fields, so try something like this:

$posts  = get_posts( array(
                 'numberposts' => 10,
                 'orderby' => 'comment_count',
                 ) );