This is a fixed version of the MCP Chart Server to work with Node.js v20.19.2. The original version had issues with ESM module loading in newer Node.js versions, causing an internal assertion error.
The following issues were fixed:
- Updated dynamic imports to use
file://
URL protocol with absolute paths - Added
.js
extensions to all imports for proper ESM resolution - Added file path utilities (
fileURLToPath
,dirname
,resolve
) for proper module resolution - Removed dynamic import in main index.ts file to avoid ESM loading issues
- Node.js v20.19.2 (as specified in package.json)
npm install
npm run build
npm run start
You can test the server using:
npm run simple-server
Or with the example:
npm run example
If you still encounter ESM module loading issues, you can run the fix script:
chmod +x fix-esm-imports.sh
./fix-esm-imports.sh
npm run build
This fixed version should now work correctly when integrated with LibreChat using Node.js v20.19.2.