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
.jsextensions 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 installnpm run buildnpm run startYou can test the server using:
npm run simple-serverOr with the example:
npm run exampleIf 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 buildThis fixed version should now work correctly when integrated with LibreChat using Node.js v20.19.2.