Skip to content
VS Code

VMware NSX for VS Code

io.github.vmware-skills/vmware-nsx

VMware NSX networking management with 33 MCP tools: segments, gateways, NAT, routing, IPAM.

client:VS Code transport:stdio runtime:pypi

Install VMware NSX in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vmware-nsx-config",
      "description": "VMWARE_NSX_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "vmware-nsx": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vmware-nsx-mgmt"
      ],
      "env": {
        "VMWARE_NSX_CONFIG": "${input:vmware-nsx-config}"
      }
    }
  }
}

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

VMware NSX in other clients