{% extends "base.html" %} {% load helpers %} {% block title %}Nautobot MCP Server{% endblock %} {% block content %}

Nautobot MCP Server

Model Context Protocol (MCP) server exposing Nautobot's REST and GraphQL APIs to LLM/AI assistants. Version {{ version }}.

{% if config_error %}
{% endif %} {% if settings %}
Resolved configuration
URL{{ settings.url }}
Token{{ settings.token }}
Verify SSL{{ settings.verify_ssl }}
Request timeout{{ settings.request_timeout }}s
Max pagination records{{ settings.max_pagination_records }}
Writes allowed{{ settings.allow_writes }}
Tenant scope{{ settings.tenant_scope|join:", "|default:"—" }}
Tenant group scope{{ settings.tenant_group_scope|join:", "|default:"—" }}
Plugins{{ settings.plugins|join:", " }}
Log level{{ settings.log_level }}
Available plugin integrations
    {% for plugin in available_plugins %}
  • {{ plugin }}
  • {% empty %}
  • None
  • {% endfor %}
{% endif %} {% endblock %}