{% extends "themis/base.html" %} {% block title %}Generate API Token — {{ themis_app_name }}{% endblock %} {% block content %}

Generate API Token

The token will be displayed once after creation. Save it before leaving the page — it cannot be recovered.
{% csrf_token %}
{{ form.name }}
{{ form.expires_at }}

Restrictions (optional)

These restrictions apply only when the token is used by an MCP tool client (e.g. Claude Desktop). They are ignored by the Daedalus REST API and the Mnemosyne web session — there the token has the same access as your account.

Allowed Tools

{{ form.allowed_tools.help_text }}

{% for choice in form.allowed_tools %} {% endfor %}
{% if form.allowed_tools.errors %}
{{ form.allowed_tools.errors }}
{% endif %}
Cancel
{% endblock %}