-
Notifications
You must be signed in to change notification settings - Fork 451
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
Labels
bug
Something isn't working
Comments
Having similar problem, can't use the sdk now. |
cuz pkce-challenge is not CJS-friendly, maybe use another library? |
same problem |
Encountered the same problem. After consulting with my colleague (thanks to @jialudev), I got a temporary solution: 1. Install
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The text was updated successfully, but these errors were encountered: