JevSim for VS Code
io.github.huaaudio/jevsim
Run verified iOS and Android UI workflows in one agent tool call with Jev.
client:VS Code
transport:stdio
runtime:npm
Install JevSim in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "typesafe-api-key",
"description": "TYPESAFE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "jevsim-model",
"description": "JEVSIM_MODEL",
"password": true
},
{
"type": "promptString",
"id": "jevsim-xcode-command",
"description": "JEVSIM_XCODE_COMMAND",
"password": true
},
{
"type": "promptString",
"id": "jevsim-xcode-args",
"description": "JEVSIM_XCODE_ARGS",
"password": true
},
{
"type": "promptString",
"id": "jevsim-android-appium-url",
"description": "JEVSIM_ANDROID_APPIUM_URL",
"password": true
},
{
"type": "promptString",
"id": "jevsim-adb-command",
"description": "JEVSIM_ADB_COMMAND",
"password": true
}
],
"servers": {
"jevsim": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@huaaudio/jevsim"
],
"env": {
"TYPESAFE_API_KEY": "${input:typesafe-api-key}",
"JEVSIM_MODEL": "${input:jevsim-model}",
"JEVSIM_XCODE_COMMAND": "${input:jevsim-xcode-command}",
"JEVSIM_XCODE_ARGS": "${input:jevsim-xcode-args}",
"JEVSIM_ANDROID_APPIUM_URL": "${input:jevsim-android-appium-url}",
"JEVSIM_ADB_COMMAND": "${input:jevsim-adb-command}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs