{% extends 'base.html' %} {% load static %} {% block title %}Nautobot MCP Tools{% endblock %} {% block content %}

MCP Tools Overview

{% if mcp_status.running %} Server Online {% else %} Server Offline {% endif %}
{% if not mcp_status.running %}
{{ mcp_status.error }}
{% endif %} {% if mcp_status.running %}

Available Tools

{% if tools %} {% for tool in tools %} {% endfor %}
Tool Name Description Module Parameters
{{ tool.name }} {{ tool.description|truncatechars:200 }} {{ tool.module_path }} {% if tool.parameters %}
{{ tool.parameters }}
{% else %} No parameters defined {% endif %}
{% else %}
No MCP tools are currently registered.
{% endif %}
{% endif %} {% endblock %}