From 0fa3097153dcf695dee5c04db469039bd13a8fd8 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:25:26 -0800 Subject: [PATCH] Add version badge for DebugTokenVerifier in documentation (#2390) Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Jeremiah Lowin --- docs/servers/auth/token-verification.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/servers/auth/token-verification.mdx b/docs/servers/auth/token-verification.mdx index 1460b8643..e14282663 100644 --- a/docs/servers/auth/token-verification.mdx +++ b/docs/servers/auth/token-verification.mdx @@ -212,6 +212,8 @@ Static token verification stores tokens as plain text and should never be used i ### Debug/Custom Token Verification + + The `DebugTokenVerifier` provides maximum flexibility for testing and special cases where standard token verification isn't applicable. It delegates validation to a user-provided callable, making it useful for prototyping, testing scenarios, or handling opaque tokens without introspection endpoints. ```python