You can use this snippet:
$post_type = get_post_type();
$meta = array(
'' => 'Choose Meta Field',
);
$meta_boxes = RWMB_Core::get_meta_boxes();
foreach ( $meta_boxes as $meta_box ) {
if ( $post_type != $meta_box['post_types'] && ! in_array( $post_type, $meta_box['post_types'] ) ) {
continue;
}
foreach ( $meta_box['fields'] as $field ) {
if ( ! empty( $field['id'] ) ) {
$meta[$field['id']] = $field['name'];
}
}
}