Hi,
The link to the documentation above has the guildline to create a custom query to show the list of favorite posts. You can do the following:
$post_ids = get_user_meta( $user_id, 'mbfp_posts', true );
$query = new WP_Query( [
'post_type' => 'post',
'post__in' => $post_ids,
] );
// Do something with $query.