I'm trying to install MCP to Visual Studio Code Insiders using VS Code CLI. Here is my PowerShell script:
$cliArgs = @(
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"C:\Projects\mcp-demo\server.py"
)
$payload = @{
name = "demo"
command = "uv"
args = $cliArgs
} | ConvertTo-Json -Compress -Depth 10
$escaped = '"' + ($payload -replace '"', '\"') + '"'
code-insiders --add-mcp $escaped
WHen I run it, it will produce this warning:
Added MCP servers: demo
(node:89204) [DEP0168] DeprecationWarning: Uncaught N-API callback exception detected, please run node with option --force-node-api-uncaught-exceptions-policy=true to handle those exceptions properly.
(Use `Code - Insiders --trace-deprecation ...` to show where the warning was created)
I don't know how to hide this warning. After I ask ChatGPT, it do have an answer. Just try to add a NODE_OPTIONS
environment variable:
$env:NODE_OPTIONS="--no-deprecation"
I expected VS Code might not need to put these warning by default when running CLI. It should have an option to control this behavior.