Custom Fields with get_post()

You already know the ID, so just use it:

$customField = get_post_meta($my_id, "_mcf_customField", true);

But only for reference, if you want to get the ID from the object:

$customField = get_post_meta($post_id->ID, "_mcf_customField", true);