Skip to content
VS Code

Hostbeam for VS Code

app.hostbeam/mcp

Lets a coding agent read the screenshots you beam to its server with Hostbeam.

client:VS Code transport:stdio runtime:npm

Install Hostbeam in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hostbeam-dir",
      "description": "HOSTBEAM_DIR",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@hostbeam/mcp"
      ],
      "env": {
        "HOSTBEAM_DIR": "${input:hostbeam-dir}"
      }
    }
  }
}

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

Hostbeam in other clients