Skip to content
VS Code

Containerization Assist for VS Code

io.github.azure/containerization-assist

TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support

client:VS Code transport:stdio runtime:npm

Install Containerization Assist in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "docker-socket",
      "description": "DOCKER_SOCKET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "containerization-assist": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "containerization-assist-mcp"
      ],
      "env": {
        "DOCKER_SOCKET": "${input:docker-socket}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

Containerization Assist in other clients