Skip to content
VS Code

winrdp mcp for VS Code

io.github.emog33k/winrdp-mcp

Zero-config server to provision and administer any Windows RDP box over WinRM/SSH/SMB.

client:VS Code transport:stdio runtime:pypi

Install winrdp mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "winrdp-vault-key",
      "description": "WINRDP_VAULT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "winrdp-profile",
      "description": "WINRDP_PROFILE",
      "password": true
    }
  ],
  "servers": {
    "winrdp-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "winrdp-mcp"
      ],
      "env": {
        "WINRDP_VAULT_KEY": "${input:winrdp-vault-key}",
        "WINRDP_PROFILE": "${input:winrdp-profile}"
      }
    }
  }
}

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

winrdp mcp in other clients