Skip to content
VS Code

Yaver for VS Code

io.github.kivanccakmak/yaver

Phone-first local dev MCP for Claude Code and Codex: install Yaver, pair mobile, run, build, deploy.

client:VS Code transport:stdio runtime:npm

Install Yaver in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "yaver-headless",
      "description": "YAVER_HEADLESS",
      "password": true
    }
  ],
  "servers": {
    "yaver": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "yaver-cli"
      ],
      "env": {
        "YAVER_HEADLESS": "${input:yaver-headless}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Yaver in other clients