2026-05-15 07:04:11 -07:00
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
import { env } from "@/lib/env";
|
2026-07-27 06:10:35 -07:00
|
|
|
import { mcpIssuer } from "@/lib/auth/jwt";
|
2026-05-15 07:04:11 -07:00
|
|
|
|
|
|
|
|
export const runtime = "nodejs";
|
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* RFC 9728 — OAuth 2.0 Protected Resource Metadata.
|
|
|
|
|
*
|
|
|
|
|
* MCP clients discover the authorization server (Authentik) via this
|
|
|
|
|
* endpoint after receiving a 401 with `WWW-Authenticate: resource_metadata=...`.
|
|
|
|
|
*/
|
|
|
|
|
export function GET() {
|
|
|
|
|
const resource = env().PUBLIC_URL.replace(/\/$/, "");
|
2026-07-27 05:58:56 -07:00
|
|
|
|
|
|
|
|
// The audience scope MUST be advertised. Authentik only evaluates a scope
|
|
|
|
|
// mapping when the client requests that scope by name, and the client only
|
|
|
|
|
// learns scope names from this document. Omit it and every access token
|
|
|
|
|
// arrives without `aud`, which jwt.ts rejects as "claim invalid: aud".
|
|
|
|
|
const audienceScope =
|
|
|
|
|
env().OIDC_AUDIENCE_SCOPE ?? `aud-${env().OIDC_AUDIENCE}`;
|
|
|
|
|
|
2026-05-15 07:04:11 -07:00
|
|
|
return NextResponse.json({
|
|
|
|
|
resource,
|
2026-07-27 06:10:35 -07:00
|
|
|
// The MCP application's issuer, which is not necessarily the Web UI's —
|
|
|
|
|
// see mcpIssuer(). Advertising the wrong one sends clients to a discovery
|
|
|
|
|
// document whose tokens this endpoint will then reject on `iss`.
|
2026-07-27 06:42:30 -07:00
|
|
|
authorization_servers: [mcpIssuer()], // as configured, slash and all
|
2026-07-27 05:58:56 -07:00
|
|
|
scopes_supported: ["openid", "profile", "email", audienceScope],
|
2026-05-15 07:04:11 -07:00
|
|
|
bearer_methods_supported: ["header"],
|
|
|
|
|
resource_documentation: `${resource}/`,
|
|
|
|
|
});
|
|
|
|
|
}
|