{% extends "base.html" %} {% block title %}Overview · kb-mcp admin{% endblock %} {% block content %} Overview Phase-one control surface for your local knowledge base. DB: {{ db_path }} {{ "Embeddings on" if embed_enabled else "Embeddings off" }}{% if embed_dim %} · {{ embed_dim }}d{% endif %} Active docs{{ stats.documents }} Deleted docs{{ stats.deleted_documents }} Types{{ stats.types }} Links{{ stats.links }} Orphans{{ stats.orphan_documents }} Vectors{{ stats.vectors }} Recent updates {% for doc in recent_docs %} {{ doc.title }} {{ doc.type }} · {{ doc.id }} {{ doc.updated_at.strftime("%Y-%m-%d %H:%M") }} {% else %} No documents yet. {% endfor %} Doctor {{ "Healthy" if doctor_report.ok else "Needs attention" }} {% for check in doctor_report.checks %} {{ check.name }} {{ check.detail }} {{ "OK" if check.ok else "Fail" }} {% endfor %} Type distribution {% for type_name, count in type_counts %} {{ type_name }} {{ count }} {% else %} No document types yet. {% endfor %} Top tags {% for tag, count in tag_counts %} {{ tag }} {{ count }} {% else %} Tags will show up once documents start carrying them. {% endfor %} {% endblock %}
Phase-one control surface for your local knowledge base.