{% if tools.is_empty() && resources.is_empty() && prompts.is_empty() %}

No capabilities discovered.

{% else %} {% if !tools.is_empty() %}

Tools

{% for tool in tools %}
{{ tool.name }}
{{ tool.description }}
{% endfor %} {% endif %} {% if !resources.is_empty() %}

Resources

{% for res in resources %}
{{ res.name }} ({{ res.uri }})
{{ res.description }}
{% endfor %} {% endif %} {% if !prompts.is_empty() %}

Prompts

{% for prompt in prompts %}
{{ prompt.name }}
{{ prompt.description }}
{% endfor %} {% endif %} {% endif %}