Skip to content
VS Code

katatan TEST for VS Code

io.github.katatan-org/katatan-test

KATATAN E2E testing agent set — Playwright + KATATAN MCP integration

client:VS Code transport:stdio runtime:npm

Install katatan TEST in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "katatan-test": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@katatan/agents"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-api-key}"
      }
    }
  }
}

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

katatan TEST in other clients