⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
workers-oauth-provider-migrate-1.0
Migrate a Cloudflare Worker from @cloudflare/workers-oauth-provider 0.x to 1.0. Use when upgrading that dependency, when OAuthProvider construction throws about resourceMetadata.resource or resourceMatchOriginOnly, or when asked to adopt the 1.0 role-based API (OAuthAuthorizationServer / OAuthResourceServer).
// RATINGS
// README
OAuth 2.1 Provider Framework for Cloudflare Workers
@cloudflare/workers-oauth-provider adds OAuth 2.1 authorization to HTTP APIs and remote MCP servers running on Cloudflare Workers.
Upgrading from 0.x? Read the migration guide, or point your coding agent at
skills/migrate-to-1.0/, which also ships in the npm package.
Install
npm install @cloudflare/workers-oauth-provider
The authorization server needs a KV namespace bound as OAUTH_KV, and the global_fetch_strictly_public compatibility flag if it accepts Client ID Metadata Documents.
Quick start
An MCP deployment has two roles. The authorization server signs users in and issues tokens. The resource server is your MCP endpoint: it accepts those tokens and checks them with the authorization server over a Service Binding.
// auth-server/index.ts
const authorizationServer = new OAuthAuthorizationServer<Env>({
issuer: 'https://auth.example.com',
resources: ['https://mcp.example.com/mcp'],
scopesSupported: ['mcp:read', 'mcp:write', 'offline_access'], // everything this server can grant
clientIdMetadataDocumentEnabled: true,
});
export default class AuthServer extends WorkerEntrypoint<Env> {
fetch(request: Request) {
// /authorize is yours: parseAuthRequest(), sign the user in and ask for consent, completeAuthorization().
if (new URL(request.url).pathname === '/authorize') return authorize(request, this.env);
return authorizationServer.fetch(request, this.env, this.ctx); // discovery, token, revocation
}
// Resource servers call this over their Service Binding.
validateToken(resource: string, token: string) {
return authorizationServer.validateToken(resource, token, this.env);
}
}
// mcp-server/index.ts
export default new OAuthResourceServer<Env, AuthProps>({
resourceMetadata: {
resource: 'https://mcp.example.com/mcp',
authorization_servers: ['https://auth.example.com'],
},
requiredScopes: ['mcp:read'], // needed for any access; clients request these first
validateToken: (env) => env.AUTH_SERVER.validateToken,
handler: {
fetch(request, env, ctx) {
// ctx.props: what completeAuthorization() stored. ctx.auth: the verified token.
// Step-up: a 403 naming the missing scope, and the client re-authorizes for it.
const needed = request.method === 'GET' ? ['mcp:read'] : ['mcp:read', 'mcp:write'];
if (!needed.every((scope) => ctx.auth.scope.includes(scope))) return insufficientScope(ctx.auth, needed);
return Response.json({ userId: ctx.props.userId });
},
},
});
examples/split-workers has both Workers in full, including the /authorize handler and wrangler.jsonc, with an end-to-end test that runs them in workerd.
The resource server publishes its RFC 9728 metadata, answers unauthenticated requests with a challenge pointing at it, and accepts only tokens issued for its own resource. The handler owns authorization beyond that: scopes, ownership, tenancy.
On the wire both lists are called scopes_supported, as the specs name them, but they mean different things: scopesSupported is everything the authorization server can grant; a resource's requiredScopes is what any access needs, so MCP clients request it first, and more comes by step-up. The handler checks ctx.auth.scope: the library advertises the required scopes but doesn't enforce them, since only your code knows which scopes imply others. See Scopes.
One Worker: OAuthProvider
The split roles above are the recommended shape. OAuthProvider remains fully supported for one Worker that is both the authorization server and its only resource, which was the 0.x shape: it combines the roles. Requests under apiRoute reach apiHandler with ctx.props and ctx.auth; everything else goes to defaultHandler, which owns /authorize and reaches the helpers as env.OAUTH_PROVIDER:
export default new OAuthProvider<Env>({
apiRoute: '/mcp',
apiHandler: McpApiHandler,
defaultHandler, // your /authorize page
authorizeEndpoint: '/authorize',
tokenEndpoint: '/oauth/token',
scopesSupported: ['mcp:read', 'mcp:write', 'offline_access'], // everything this server can grant
resourceMetadata: {
resource: 'https://mcp.example.com/mcp',
authorization_servers: ['https://mcp.example.com'],
},
requiredScopes: ['mcp:read'], // needed for any access; clients request these first
clientIdMetadataDocumentEnabled: true,
});
Documentation
- Resource servers: more resources, both roles in one Worker, what the handler sees, other issuers.
- Consent page: what it must show, Allow and Deny, remembering consent.
- Signing in through another provider: GitHub, Google and friends as the identity step.
- Authorization server reference: the authorize endpoint, client registration (pre-registered, CIMD, DCR), PKCE and token lifetimes, resources and audiences, scopes, KV storage, every option.
- MCP authorization discovery: how a client gets from a
401to your authorization server. - Advanced configuration: external tokens, token exchange,
tokenExchangeCallback,onError, Enterprise-Managed Authorization (experimental). - Storage schema: the KV layout. Tokens, codes and secrets are stored only as hashes;
propsare encrypted with a key only the token holder can unwrap.
Standards
MCP authorization 2026-07-28, OAuth 2.1, and RFCs 6750, 7009, 7591, 7636, 8414, 8693, 8707, 9207 and 9728, plus Client ID Metadata Documents, OpenID Connect RP Metadata Choices and, experimentally, MCP Enterprise-Managed Authorization.
Development
Node 24 or newer. npm install, npm run build, npm run check. Changes that affect behavior or the public API need a Changeset; see AGENTS.md for conventions, SECURITY.md for vulnerability reporting, and HISTORY.md for how the library began.
// HOW IT'S BUILT
KEY FILES