{% extends "base.html" %} {% block content %}

Credentials

Manage API keys

Create key

API keys authenticate as {{ current_user.display_name }} for REST and MCP access

Keys can be revealed again from this page and revoked individually at any time.

Back home
{% if revealed_api_key %}

Reveal

Full API key

{% endif %}

Current User

API Keys

{% for api_key in api_keys %}

{{ api_key.label }}

{{ api_key.preview }}

{{ 'active' if api_key.is_active else 'revoked' }}
Key id
{{ api_key.key_id }}
Created
{{ api_key.created_at }}
Last used
{{ api_key.last_used_at or "never" }}
Selected
{{ "yes" if selected_api_key_id == api_key.id else "no" }}
{% if api_key.revoked_at %}

Revoked at {{ api_key.revoked_at }}.

{% endif %}
Reveal {% if api_key.is_active %}
{% endif %}
{% else %}

No API keys yet

Create a key to authenticate to the REST API and MCP endpoint.

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}