claudetest for VS Code
io.github.fasteningcode/claudetest
Playwright & Appium test automation for Claude. Generate tests, diagnose failures, open fix PRs.
client:VS Code
transport:stdio
runtime:npm
Install claudetest in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
}
],
"servers": {
"claudetest": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@fasteningcode/claudetest"
],
"env": {
"GITHUB_TOKEN": "${input:github-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs