惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
Y
Y Combinator Blog
V
V2EX
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
B
Blog
G
Google Developers Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
N
Netflix TechBlog - Medium
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why your MCP server should serve OAuth Protected Resource...
kanta13jp1 · 2026-05-03 · via DEV Community

kanta13jp1

The problem: too many clients, too few discovery hooks

We expose Supabase Edge Functions as MCP (Model Context Protocol) servers. The clients that hit them are heterogeneous — Claude Desktop, Codex CLI, Cursor, VS Code Continue, a couple of in-house browser extensions. None of them ship with a hard-coded "use WorkOS AuthKit, scope is tool:ai_chat, audience must contain urn:jibun:tool:<tool>" recipe. Without a discovery mechanism, every new client needs a hand-written runbook, and every change to the auth setup means another doc revision.

RFC 9728 (OAuth 2.0 Protected Resource Metadata) solves this by letting a protected resource publish a JSON document at /.well-known/oauth-protected-resource. Clients fetch it, learn the authorization servers and supported scopes, and bootstrap themselves. The current MCP authorization draft is built on top of this.

This post documents the metadata endpoint we shipped today on our Edge Functions — what we put in it, why, and which fields exist purely as scar tissue from real failures. The code lives in supabase/functions/_shared/mcp_auth_guard.ts.

Setup

  • AuthKit (WorkOS) is the identity provider — JWKS, issuer, hosted SSO UI.
  • Edge Function (Deno on Supabase) is the protected resource. One EF hosts many MCP tools (a "hub" pattern).
  • Bearer JWT verification: jose.jwtVerify checks signature / expiry / issuer. Audience is checked separately via RFC 8707 resource indicators against urn:jibun:tool:<tool>.
  • Scope shapes: we accept all (super-admin), tool:<name>, and bare <name>, because client SDKs disagree on the prefix.

The endpoint

isOAuthProtectedResourceMetadataRequest(req) matches any path ending in /.well-known/oauth-protected-resource. buildOAuthProtectedResourceMetadata produces the JSON body:

export const OAUTH_PROTECTED_RESOURCE_PATH =
  "/.well-known/oauth-protected-resource";

export function buildOAuthProtectedResourceMetadata(
  reqUrl: string,
  toolName: string,
  scopes: string[] = [toolName],
): Record<string, unknown> {
  const resource = optionalEnv("MCP_RESOURCE_URL") ||
    protectedResourceUrl(reqUrl);
  return {
    resource,
    resource_name: toolName,
    authorization_servers: getAuthKitAuthorizationServers(),
    scopes_supported: uniqueStrings(["all", toolName, ...scopes]),
    bearer_methods_supported: ["header"],
    resource_signing_alg_values_supported: ["RS256"],
    jwks_uri: optionalEnv("WORKOS_JWKS_URL"),
    authkit_url: optionalEnv("WORKOS_AUTHKIT_URL") ||
      optionalEnv("WORKOS_AUTHKIT_DOMAIN") || null,
    token_validation: {
      audience_checked_by_jwt_verify: false,
      audience_checked_by_resource_indicator: true,
      issuer_trailing_slash_tolerant: true,
    },
  };
}

Enter fullscreen mode Exit fullscreen mode

Four design notes worth surfacing.

1. resource is the externally visible URL

Edge Functions live at https://<project>.functions.supabase.co/ai-hub, but real deployments often add a CDN, a custom domain, or a path rewrite in front. We honour MCP_RESOURCE_URL first, and fall back to deriving it from the request URL minus the well-known suffix.

This value has to match the audience claim that your verification logic compares against. Get it wrong and you hit the worst class of bug: every token is technically valid, but the resource indicator check fails on the server, so the symptom is a generic 403 with no useful client-side breadcrumb.

2. authorization_servers puts AuthKit URL first

We list WORKOS_AUTHKIT_URL (the short hosted URL that aggregates the login UI) before WORKOS_ISSUER (the JWT iss value). Clients typically need both: AuthKit URL is where humans go to sign in, issuer is who signs the resulting token. Mixing them up sends users to the wrong page or makes the token verification reject valid tokens.

3. audience_checked_by_jwt_verify: false is a footgun warning

WorkOS-issued JWTs do not populate the audience claim by default. If a client implementer naively turns on audience validation in jose.jwtVerify, every token gets rejected. We document the fact that we use RFC 8707 resource indicators in the request instead, so client authors do not waste hours wondering why their "secure" config refuses everything.

4. issuer_trailing_slash_tolerant: true is empirical scar tissue

https://api.workos.com/user_management/<id> and https://api.workos.com/user_management/<id>/ both circulate in the wild. Our getWorkOsIssuers() accepts three variants (raw, no slash, with slash). We expose this leniency in the metadata so client authors know they can be loose too.

Tying it back to the 401 challenge

The other half of the spec is that protected resources should advertise the metadata URL in their WWW-Authenticate header on a 401:

WWW-Authenticate: Bearer realm="urn:jibun:tool:ai_chat",
  resource_metadata="https://<host>/ai-hub/.well-known/oauth-protected-resource"

Enter fullscreen mode Exit fullscreen mode

A client that has never heard of metadata can still bootstrap from a single failed request. We compute the URL through protectedResourceUrl(reqUrl) so it works behind a CDN.

Discovery is not authorization

The same PR shipped agent_tool_policy_server_gate.sql, a server-side scope gate. It stores an (agent role × tool) approval matrix in Postgres and rejects with 403 when a JWT scope is broader than the row in the matrix.

This matters because metadata only tells clients which scopes exist. It does not enforce who is allowed to wield them. The policy gate enforces the boundary; the metadata documents the contract.

Lessons

  1. Metadata is an I/O contract. Once published, clients depend on it. Lock down field names and semantics before exposing the endpoint, and namespace your custom extensions (we should rename token_validation to live under a x_jibun_* prefix in v2).
  2. The trailing-slash and audience traps cost more in operations than in code. Before we documented our checks in metadata, every new client integration ate an hour of synchronous debugging. After: about five minutes.
  3. Discovery comes with a no-lying obligation. If your published metadata diverges from server behaviour, debugging becomes impossible. Add a CI snapshot test that exercises both the metadata builder and the verifier against the same fixture token.

References

  • RFC 9728 — OAuth 2.0 Protected Resource Metadata
  • RFC 8707 — Resource Indicators for OAuth 2.0
  • MCP Authorization (latest draft)
  • WorkOS AuthKit JWKS / issuer documentation
  • Internal: docs/MCP_AUTH_SECURITY_PRINCIPLES.md Rule 27