wopee mcp for VS Code
io.github.wopee-io/wopee-mcp
AI testing agents for web apps — dispatch test runs, crawls, fetch artifacts and status.
client:VS Code
transport:stdio
runtime:npm
Install wopee mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wopee-api-key",
"description": "WOPEE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "wopee-project-uuid",
"description": "WOPEE_PROJECT_UUID",
"password": true
},
{
"type": "promptString",
"id": "wopee-api-url",
"description": "WOPEE_API_URL",
"password": true
}
],
"servers": {
"wopee-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"wopee-mcp"
],
"env": {
"WOPEE_API_KEY": "${input:wopee-api-key}",
"WOPEE_PROJECT_UUID": "${input:wopee-project-uuid}",
"WOPEE_API_URL": "${input:wopee-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs