{% extends "base.html" %} {% block title %}Overview - Memory MCP Dashboard{% endblock %} {% block content %}

Overview

Memory system status and statistics

{% include "partials/stats_cards.html" %}

Quick Actions

By Type

{% for type, count in stats.get('by_type', {}).items() %}
{{ type }}

{{ count }}

{% endfor %}

By Category

{% for category, count in stats.get('by_category', {}).items()|sort(attribute='1', reverse=true) %}

{{ category }}

{{ count }}

{% endfor %}

Helpfulness Metrics

Total Retrieved

{{ stats.get('total_retrieved', 0) }}

Total Used

{{ stats.get('total_used', 0) }}

Avg Trust

{% set avg_trust = stats.get('avg_trust', 0.7) %}

{{ avg_trust }}

Helpfulness Rate

{% set retrieved = stats.get('total_retrieved', 0) %} {% set used = stats.get('total_used', 0) %} {% if retrieved > 0 %} {% set rate = (used / retrieved * 100)|round|int %}

{{ rate }}%

{% else %}

{% endif %}

Memories Over Time

{% endblock %}