Ok, I think I got this wrong ... there is of course no post_id for the categories, so rwmb_meta() won't help here much.
However you can query the $term_meta and get your custom field with the following snippet:
<?php
$term_ID = get_queried_object()->term_id;
$term_meta = get_term_meta($term_ID);
echo $term_meta['YOUR_FIELD_NAME'][0];
?>
Hope that will help you as well David!