Skip to content
VS Code

Proxmox VE MCP Server for VS Code

io.github.samik081/mcp-pve

Manage Proxmox VE through AI assistants

client:VS Code transport:stdio runtime:npm

Install Proxmox VE MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pve-base-url",
      "description": "PVE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pve-token-id",
      "description": "PVE_TOKEN_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pve-token-secret",
      "description": "PVE_TOKEN_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-pve": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@samik081/mcp-pve"
      ],
      "env": {
        "PVE_BASE_URL": "${input:pve-base-url}",
        "PVE_TOKEN_ID": "${input:pve-token-id}",
        "PVE_TOKEN_SECRET": "${input:pve-token-secret}"
      }
    }
  }
}

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

Proxmox VE MCP Server in other clients