Skip to content
VS Code

qatouch for VS Code

io.github.qatouch/qatouch

MCP Server for software testing, test case management, test execution, and defect tracking.

client:VS Code transport:stdio runtime:npm

Install qatouch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "qatouch-domain",
      "description": "QATOUCH_DOMAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qatouch-api-token",
      "description": "QATOUCH_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "qatouch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "qatouch-mcp-server"
      ],
      "env": {
        "QATOUCH_DOMAIN": "${input:qatouch-domain}",
        "QATOUCH_API_TOKEN": "${input:qatouch-api-token}"
      }
    }
  }
}

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

qatouch in other clients