Skip to content
VS Code

testa for VS Code

io.github.valewnrt/testa

Drive the iOS Simulator from an agent: read the screen, tap/type/swipe, replay flows in CI.

client:VS Code transport:stdio runtime:npm

Install testa in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "testa-mcp-full",
      "description": "TESTA_MCP_FULL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "testa-udid",
      "description": "TESTA_UDID",
      "password": true
    }
  ],
  "servers": {
    "testa": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@valewnrt/testa-mcp"
      ],
      "env": {
        "TESTA_MCP_FULL": "${input:testa-mcp-full}",
        "TESTA_UDID": "${input:testa-udid}"
      }
    }
  }
}

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

testa in other clients