{% extends "base.html" %} {% block title %}MCP Tools – Agent Platform{% endblock %} {% block content %}

Verfügbare Tools ({{ tools|length }})

{% if tools %}
{% for tool in tools %}

{{ tool.name }}

{{ tool.description }}

{% if tool.inputSchema %}
Schema
{{ tool.inputSchema | tojson(indent=2) }}
{% endif %}
{% endfor %}
{% else %}

{% if reachable %} MCP-Server erreichbar, aber keine Tools registriert. {% else %} MCP-Server nicht erreichbar. Prüfe die Konfiguration. {% endif %}

{% endif %}
{% endblock %}