computer mcp for VS Code
io.github.agent360dk/computer-mcp
macOS computer use with the guardrails on: passwords blacked out, writes need consent, all logged.
client:VS Code
transport:stdio
runtime:npm
Install computer mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cmcp-mode",
"description": "CMCP_MODE",
"password": true
},
{
"type": "promptString",
"id": "cmcp-ask-timeout",
"description": "CMCP_ASK_TIMEOUT",
"password": true
}
],
"servers": {
"computer-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agent360/computer-mcp"
],
"env": {
"CMCP_MODE": "${input:cmcp-mode}",
"CMCP_ASK_TIMEOUT": "${input:cmcp-ask-timeout}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs