GhostQA for VS Code
io.github.synctekllc/ghostqa
AI personas navigate your web app in real browsers, find bugs and UX issues. No scripts needed.
client:VS Code
transport:stdio
runtime:pypi
Install GhostQA in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ghostqa-allowed-dirs",
"description": "GHOSTQA_ALLOWED_DIRS",
"password": true
}
],
"servers": {
"ghostqa": {
"type": "stdio",
"command": "uvx",
"args": [
"ghostqa"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"GHOSTQA_ALLOWED_DIRS": "${input:ghostqa-allowed-dirs}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs