Icemoon — control a real iPhone with AI for VS Code
app.icemoon/automation-studio
Control real, physical iPhones with AI: screen reading, human-like touch, no jailbreak.
client:VS Code
transport:stdio
runtime:npm
Install Icemoon — control a real iPhone with AI in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "icemoon-app",
"description": "ICEMOON_APP",
"password": true
},
{
"type": "promptString",
"id": "icemoon-dashboard-url",
"description": "ICEMOON_DASHBOARD_URL",
"password": true
}
],
"servers": {
"automation-studio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"icemoon-mcp"
],
"env": {
"ICEMOON_APP": "${input:icemoon-app}",
"ICEMOON_DASHBOARD_URL": "${input:icemoon-dashboard-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs