Skip to content
VS Code

qaskills for VS Code

io.github.pramoddutta/qaskills

Search, inspect, and install 400+ QA testing skills from qaskills.sh into any MCP client.

client:VS Code transport:stdio runtime:npm

Install qaskills in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "qaskills-api-url",
      "description": "QASKILLS_API_URL",
      "password": true
    }
  ],
  "servers": {
    "qaskills": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@qaskills/mcp"
      ],
      "env": {
        "QASKILLS_API_URL": "${input:qaskills-api-url}"
      }
    }
  }
}

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

qaskills in other clients