Hi,
I think it's not really hard to do. Here is an example
{% set args = { post_type: "listing", posts_per_page: 7} %}
{% set posts = mb.get_posts( args ) %}
{% for post in posts %}
{{ post.title }}
{% set term_list = mb.get_the_terms( post.ID, 'category' ) %}
{% for term in term_list %}
<div class="term-item {{ term.slug }}">
{{ term.name }}
</div>
{% endfor %}
{% endfor %}