Skip to content
VS Code

docker wts build for VS Code

io.github.artemdruzhininad-star/docker-wts-build

Schedule Docker builds via Windows Task Scheduler — survives VS Code terminal timeouts

client:VS Code transport:stdio runtime:pypi

Install docker wts build in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dwtb-project-dir",
      "description": "DWTB_PROJECT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-compose-file",
      "description": "DWTB_COMPOSE_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-custom-services",
      "description": "DWTB_CUSTOM_SERVICES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-logs-dir",
      "description": "DWTB_LOGS_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-task-prefix",
      "description": "DWTB_TASK_PREFIX",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-task-timeout-ms",
      "description": "DWTB_TASK_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dwtb-max-task-age-days",
      "description": "DWTB_MAX_TASK_AGE_DAYS",
      "password": true
    }
  ],
  "servers": {
    "docker-wts-build": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "docker-wts-build"
      ],
      "env": {
        "DWTB_PROJECT_DIR": "${input:dwtb-project-dir}",
        "DWTB_COMPOSE_FILE": "${input:dwtb-compose-file}",
        "DWTB_CUSTOM_SERVICES": "${input:dwtb-custom-services}",
        "DWTB_LOGS_DIR": "${input:dwtb-logs-dir}",
        "DWTB_TASK_PREFIX": "${input:dwtb-task-prefix}",
        "DWTB_TASK_TIMEOUT_MS": "${input:dwtb-task-timeout-ms}",
        "DWTB_MAX_TASK_AGE_DAYS": "${input:dwtb-max-task-age-days}"
      }
    }
  }
}

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

docker wts build in other clients