AWT (AI Watch Tester) for VS Code
io.github.ksgisang/awt
AI-powered E2E testing MCP server. Detects and auto-fixes UI bugs via DevQA Loop and Vision AI.
client:VS Code
transport:stdio
runtime:pypi
Install AWT (AI Watch Tester) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
}
],
"servers": {
"awt": {
"type": "stdio",
"command": "uvx",
"args": [
"aat-devqa"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"OPENAI_API_KEY": "${input:openai-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