Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CJS Build Fails Due to Top-Level Await in SSEClientTransport Dependencies #213

Open
mayank-holofy opened this issue Mar 21, 2025 · 4 comments
Labels
bug Something isn't working

Comments

@mayank-holofy
Copy link

mayank-holofy commented Mar 21, 2025

When bundling my Electron/TypeScript project in CommonJS mode, the build fails with the error:

Top-level await is currently not supported with the "cjs" output format
It appears SSEClientTransport (and its transitive dependency on pkce-challenge) uses top-level await in its ESM code, which breaks CJS builds in esbuild (and other bundlers).

Steps to reproduce

Import SSEClientTransport from @modelcontextprotocol/sdk/client/sse.js in a project configured for CommonJS output.
Attempt to bundle using esbuild (or a similar CJS-only tool).
The build fails with the above error.
Expected behavior
A working CJS build without errors—or a documented ESM-only usage pattern for SSE.

Possible solutions

Provide a CJS-friendly build that avoids top-level await.
Use a lazy/async import that defers or removes top-level await from the main bundle.
Document that SSE requires ESM (so users can plan accordingly).
Environment

@modelcontextprotocol/sdk version: latest
Bundler: esbuild (CJS mode)
Node/Electron environment
Additional context
This prevents using @modelcontextprotocol/sdk’s SSE features in many Electron + Node.js CJS setups. A workaround is removing SSE usage altogether or switching the entire project to ESM.

@mayank-holofy mayank-holofy added the bug Something isn't working label Mar 21, 2025
@mayank-holofy mayank-holofy changed the title Title: CJS Build Fails Due to Top-Level Await in SSEClientTransport Dependencies CJS Build Fails Due to Top-Level Await in SSEClientTransport Dependencies Mar 21, 2025
@dimavedenyapin
Copy link

Having similar problem, can't use the sdk now.

@AmAzing129
Copy link

cuz pkce-challenge is not CJS-friendly, maybe use another library?

@Cloudkkk
Copy link

same problem

@RussellLuo
Copy link

RussellLuo commented Mar 27, 2025

Encountered the same problem. After consulting with my colleague (thanks to @jialudev), I got a temporary solution:

1. Install patch-package

npm install patch-package --save-dev

2. Fix pkce-challenge

Modify node_modules/pkce-challenge/dist/index.node.js as below:

--- a/node_modules/pkce-challenge/dist/index.node.js
+++ b/node_modules/pkce-challenge/dist/index.node.js
@@ -2,7 +2,9 @@ let crypto;
 crypto =
     globalThis.crypto?.webcrypto ?? // Node.js 16 REPL has globalThis.crypto as node:crypto
         globalThis.crypto ?? // Node.js 18+ 
-        (await import("node:crypto")).webcrypto; // Node.js 16 non-REPL
+        (async() => {
+            (await import("node:crypto")).webcrypto; // Node.js 16 non-REPL
+        })();
 /**
  * Creates an array of length `size` of random bytes
  * @param size

3. Generate a patch

npx patch-package pkce-challenge

4. Auto-apply the patch

Add the following line in package.json:

"scripts": {
  ...
  "postinstall": "patch-package"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants