You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add missing `hono` peer dependency to `@modelcontextprotocol/node`. The package already depends on `@hono/node-server` which requires `hono` at runtime, but `hono` was only listed in the workspace root, not as a peer dependency of the package itself.
* // pass addClientAuth as provider.addClientAuthentication implementation
20
+
* ```
19
21
*/
20
22
exportfunctioncreatePrivateKeyJwtAuth(options: {
21
23
issuer: string;
@@ -30,7 +32,7 @@ export function createPrivateKeyJwtAuth(options: {
30
32
// Lazy import to avoid heavy dependency unless used
31
33
if(globalThis.crypto===undefined){
32
34
thrownewTypeError(
33
-
'crypto is not available, please ensure you add have Web Crypto API support for older Node.js versions (see https://github.com/modelcontextprotocol/typescript-sdk#nodejs-web-crypto-globalthiscrypto-compatibility)'
35
+
'crypto is not available, please ensure you have Web Crypto API support for older Node.js versions (see https://github.com/modelcontextprotocol/typescript-sdk#nodejs-web-crypto-globalthiscrypto-compatibility)'
0 commit comments