🔧 Tools {% if tools %}{{ tools|length }} available{% endif %}

{% if status.error %}
Error: {{ status.error }}
{% endif %}
{% if tools %}
{% for tool in tools %}
{{ tool.name }}
{{ tool.description or 'No description available' }}
{% for param in tool.parameters %} {{ param.name }} {% endfor %} {% if not tool.parameters %} No parameters {% endif %}
{% endfor %}
{% else %}
📦

No tools available

{% if status.connected %}The MCP server has no tools registered.{% else %}Connect to an MCP server to start exploring tools.{% endif %}

{% endif %}
History {{ history|length }}
{% if history %} {% for item in history[:20] %}
{{ item.timestamp }} {{ item.tool_name }} ({{ item.duration }}s)
{% endfor %} {% else %}
🕐
No history yet
{% endif %}
🔔 Notifications {{ notifications|length }}
{% if notifications %} {% for item in notifications[:20] %}
{{ item.timestamp }} {{ item.message }}
{% endfor %} {% else %}
🔕
No notifications yet
{% endif %}