{% extends "base.html" %} {% block title %}Settings · kb-mcp admin{% endblock %} {% block content %}
KB_MCP_HOME{{ kb_home or "default" }}
Schema{{ version }}
Embeddings{{ "enabled" if embedder_enabled else "disabled" }}
Dimension{{ embedder_dim }}

Configuration

Config file{{ config_path }}

Actions

Import from sync directory
Import markdown files from the vault's sync_dir/md/
Git commit
Export documents to markdown and git commit
Rebuild embeddings
Recompute semantic-search vectors for all documents

Storage

Database path{{ db_path }}

Doctor checks

{% for check in doctor_report.checks %}
{{ check.name }}
{{ check.detail }}
{{ "OK" if check.ok else "Fail" }}
{% endfor %}
{% endblock %}