This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/** | |
* This script fixes the MCP SDK issue with pkce-challenge ES Module | |
* It replaces the static require with a dynamic import in the auth.js file | |
*/ | |
const fs = require('fs'); | |
const path = require('path'); |