Server Status: {% if server %}Active{% else %}Inactive{% endif %}
{% if server %}
MCP server is running and ready to accept connections.
{% else %}
MCP server is not running. This could be because the app is in a management command,
or because initialization failed.
{% endif %}
Settings
{% for key, value in settings.items %}
{{ key }}
{{ value|default:"None" }}
{% endfor %}
MCP Tools ({{ tools|length }})
{% if tools %}
{% for tool in tools %}
{{ tool.name }}
{{ tool.description }}
{% if tool.is_async %}
async
{% endif %}
{% if tool.parameters %}
{{ tool.parameters|length }} parameters
{% endif %}
{% endfor %}
{% else %}
No tools registered.
{% endif %}
MCP Resources ({{ resources|length }})
{% if resources %}
{% for resource in resources %}
{{ resource.uri_template }}
{{ resource.description }}
{% if resource.is_async %}
async
{% endif %}
{% endfor %}
{% else %}
No resources registered.
{% endif %}
MCP Prompts ({{ prompts|length }})
{% if prompts %}
{% for prompt in prompts %}
{{ prompt.name }}
{{ prompt.description }}
{% if prompt.is_async %}
async
{% endif %}
{% if prompt.arguments %}
{{ prompt.arguments|length }} arguments
{% endif %}