Running Model Context protocol servers in a specific Node version inside Visual Studio Code
As you might know, I maintain a few Azure Pipelines extensions, for backwards compatibility many of these include Typescript targeting Node 16 still. Today I was playing around with Model Context Protocol (MCP) servers in Visual Studio Code Insiders and ran into an issue where the current active Node version on my system was older than the one required by the MCP server.
To allow me to easily switch between Node versions I rely on Fast Node Switcher, which sets up the local environment variables, changes the PATH and does some magic with symlinks to seamlessly switch from one Node version to another in a matter of seconds.
This also requires me to select the node version I want to use, either before starting Visual Studio Code, or inside the terminal of Visual Studio Code. So, a normal startup sequence would look like this for me:
cd azure-pipelines-variables-tasks
fnm use v16
code .
MCP Servers can be written in any programming language, but many are distributed as npm packages. And given that they're pretty recent, they often don't work on older node versions. As was the case with the @playwright/mcp@latest
package to allow GitHub Copilot to interact with the UI presented by my extensions.
When installing the playwright MCP server, the following snippet is stored in the Visual Studio Code settings.json:
"mcp": {
"servers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp@latest"
]
}
}
}
But this will rely on the version of npx
and the version of node
that are available on the path. As mentioned before, these are too old in my case.
I tried using fnm exec --using v22
to launch the version of npx
matching node 22, but unfortunately, there seems to be a quirk in fnm
which fails to find npx
in this specific usecase. The MCP server fails to start with the following error message:
2025-04-02 17:34:19.103 [info] Starting server from LocalProcess extension host
2025-04-02 17:34:19.120 [info] Connection state: Starting
2025-04-02 17:34:19.120 [info] Connection state: Running
2025-04-02 17:34:19.160 [warning] [server stderr] error: Can't spawn program: program not found
2025-04-02 17:34:19.160 [warning] [server stderr] Maybe the program npx does not exist on not available in PATH?
2025-04-02 17:34:19.164 [info] Connection state: Error Process exited with code 1
After some additional searching I found an alternative option in Node Version Switcher. Which has a similar exec
option. It's just as easy to install:
winget install jasongin.nvs
# restart shell
nvs install 22.14.0
I then had to change my MCP server configuration in Visual Studio Code to match:
"mcp": {
"servers": {
"playwright": {
"command": "nvs",
"args": ["exec", "22.14.0", "npx", "-y", "@playwright/mcp@latest"]
}
}
}
And now my build terminal uses Node 16 and the Playwright MCP server happily runs in Node 22! It looks like I can even combine this with fnm
for now, though I might just rewrite my current scripts to rely on nvs
instead.