{% extends "base.html" %} {% block title %}MCP - Invincible{% endblock %} {% block content %}

MCP connections

AI clients reach the MCP tool server over OAuth 2.1 + PKCE. Register a client, approve it in the browser, and its tokens act as you.

Agent status: checking…

{% if revoked %}{% endif %}

Connecting a client

API keys (inv_...) are not accepted on /mcp — OAuth bearer tokens only (owner decision, Q1).

Registered clients

{% if clients %}
{% for c in clients %} {% endfor %}
NameClient IDRedirect URIs Active tokens
{{ c.client_name or '(unnamed)' }} {{ c.client_id }} {{ c.redirect_uris | join(', ') }} {{ c.active_tokens }}
{% else %}

No MCP clients registered yet. A client registers itself via POST /oauth/register when it first connects.

{% endif %} {% endblock content %}