MobiLoop for VS Code
io.github.enessubass/mobiloop-mcp
Guarded AI mobile Appium testing, security scanning, verification, and fix-retest MCP tools.
client:VS Code
transport:stdio
runtime:oci
Install MobiLoop in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mobiloop-workspace-root",
"description": "MOBILOOP_WORKSPACE_ROOT",
"password": true
},
{
"type": "promptString",
"id": "appium-server-url",
"description": "APPIUM_SERVER_URL",
"password": true
}
],
"servers": {
"mobiloop-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/enessubass/mobiloop-mcp:0.1.0-alpha.14"
],
"env": {
"MOBILOOP_WORKSPACE_ROOT": "${input:mobiloop-workspace-root}",
"APPIUM_SERVER_URL": "${input:appium-server-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs