最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to avoid warning message shown when running VS Code CLI? - Stack Overflow

programmeradmin2浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论