Skip to content
VS Code

nr mcp for VS Code

io.github.texan-nxtassist/nr-mcp

MCP server for Node-RED — safe deploy, optimistic locking, smart search, 13 tools

client:VS Code transport:stdio runtime:pypi

Install nr mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nr-url",
      "description": "NR_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nr-token",
      "description": "NR_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nr-user",
      "description": "NR_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nr-pass",
      "description": "NR_PASS",
      "password": true
    }
  ],
  "servers": {
    "nr-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nr-mcp"
      ],
      "env": {
        "NR_URL": "${input:nr-url}",
        "NR_TOKEN": "${input:nr-token}",
        "NR_USER": "${input:nr-user}",
        "NR_PASS": "${input:nr-pass}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

nr mcp in other clients