{# Add a server, step 1 (spec ยง7.1): a URL, a name, and two credentials. Submitting this fetches and parses the document and stores nothing at all. The operator sees what they are about to register on the next page, and only then does anything reach the database. An ordinary form with an ordinary POST. htmx is on the page, and this is not the place for it: a submission here makes a network call to somebody else's server, and the honest way to show that is a page that navigates. #} {% extends "base.html" %} {% from "partials/field.html" import field, choice %} {% from "partials/credential_fields.html" import credential_fields %} {% block title %}Add a server · mcp-api-gateway{% endblock %} {% block scripts %} {% endblock %} {% block content %}
{% endblock %}