keryx 0.21.1 → 0.21.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -174,7 +174,7 @@ export class McpInitializer extends Initializer {
174
174
  401,
175
175
  corsHeaders,
176
176
  {
177
- "WWW-Authenticate": `Bearer resource_metadata="${resourceMetadataUrl}"`,
177
+ "WWW-Authenticate": `Bearer resource_metadata="${resourceMetadataUrl}", scope="mcp"`,
178
178
  },
179
179
  );
180
180
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keryx",
3
- "version": "0.21.1",
3
+ "version": "0.21.2",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -61,6 +61,7 @@ export function handleProtectedResourceMetadata(
61
61
  JSON.stringify({
62
62
  resource,
63
63
  authorization_servers: [origin],
64
+ scopes_supported: ["mcp"],
64
65
  }),
65
66
  {
66
67
  status: 200,
@@ -82,6 +83,7 @@ export function handleMetadata(origin: string): Response {
82
83
  grant_types_supported: ["authorization_code"],
83
84
  code_challenge_methods_supported: ["S256"],
84
85
  token_endpoint_auth_methods_supported: ["none"],
86
+ client_id_metadata_document_supported: false,
85
87
  }),
86
88
  {
87
89
  status: 200,