{% if status.error %}
⚠
{% endif %}
Error: {{ status.error }}
{% if tools %}
{% endif %}
{% for tool in tools %}
{% endfor %}
{% else %}
{{ tool.name }}
↗
{{ tool.description or 'No description available' }}
{% for param in tool.parameters %}
{{ param.name }}
{% endfor %}
{% if not tool.parameters %}
No parameters
{% endif %}
No tools available
{% if status.connected %}The MCP server has no tools registered.{% else %}Connect to an MCP server to start exploring tools.{% endif %}
⏱
History
{{ history|length }}
{% if history %}
{% for item in history[:20] %}
{% endif %}
{{ item.tool_name }}
({{ item.duration }}s)
{% endfor %}
{% else %}
🕐
No history yet
🔔
Notifications
{{ notifications|length }}
{% if notifications %}
{% for item in notifications[:20] %}
{% endif %}
{{ item.message }}
{% endfor %}
{% else %}
🔕
No notifications yet