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
Error when importing the pkce-challenge ESM module in a CommonJS environment. The MCP SDK is attempting to use require() to import an ES Module, which is not supported.
Reproduction Steps
Steps to reproduce the behavior:
Create a project using the MCP SDK
Install dependencies including @modelcontextprotocol/sdk and @langchain/mcp-adapters
Run the application
See error related to ES Module import
Expected Behavior
The application should successfully import dependencies and run without ESM/CommonJS compatibility errors.
Actual Behavior
An error occurs when attempting to use require() to import the ES Module pkce-challenge:
[0] /***/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js:13
[0] const pkce_challenge_1 = __importDefault(require("pkce-challenge"));
[0] ^
[0]
[0] Error [ERR_REQUIRE_ESM]: require() of ES Module /***/node_modules/pkce-challenge/dist/index.node.js from /***/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js not supported.
[0] Instead change the require of index.node.js in /***/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js to a dynamic import() which is available in all CommonJS modules.
[0] at Object.<anonymous> (***/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js:13:42)
[0] at Object.<anonymous> (***/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js:6:19)
[0] at Object.<anonymous> (***/node_modules/@langchain/mcp-adapters/dist/client.cjs:32:18)
[0] at Object.<anonymous> (***/node_modules/@langchain/mcp-adapters/dist/index.cjs:4:19)
[0] at Object.<anonymous> (***/node_modules/@langchain/mcp-adapters/index.cjs:1:18)
[0] at Object.<anonymous> (***/dist/backend/game-architect-typescript.js:47:24)
[0] at Object.<anonymous> (***/dist/backend/express-api-server.js:8:40) {
[0] code: 'ERR_REQUIRE_ESM'
[0] }
[0]
[0] Node.js v20.9.0
Environment
OS: macOS,
Node.js version: 20.9.0
Package version: 0.3.4
MCP SDK version: 1.7.0
Additional Context
Add any other context about the problem here, such as:
Server implementation details
Transport type (stdio, SSE)
Any relevant logs
Possible Solution
The error message suggests changing the require() call to a dynamic import() in the MCP SDK's auth.js file. Options include:
Update the MCP SDK to use dynamic imports for ESM-only packages:
The change you requested for this project was already implemented in 0.3.4, per #36. Please update to the latest version and open a new issue if you are still having CJS issues with that version.
Bug Description
Error when importing the
pkce-challenge
ESM module in a CommonJS environment. The MCP SDK is attempting to userequire()
to import an ES Module, which is not supported.Reproduction Steps
Steps to reproduce the behavior:
@modelcontextprotocol/sdk
and@langchain/mcp-adapters
Expected Behavior
The application should successfully import dependencies and run without ESM/CommonJS compatibility errors.
Actual Behavior
An error occurs when attempting to use
require()
to import the ES Modulepkce-challenge
:Environment
Additional Context
Add any other context about the problem here, such as:
Possible Solution
The error message suggests changing the
require()
call to a dynamicimport()
in the MCP SDK's auth.js file. Options include:Update the MCP SDK to use dynamic imports for ESM-only packages:
Use a version of
pkce-challenge
that provides CommonJS support if availableCreate a custom wrapper for
pkce-challenge
that handles the ESM/CommonJS interoperabilityConfigure the build system to handle ESM/CommonJS interoperability (using tools like webpack or babel)
The text was updated successfully, but these errors were encountered: