Skip to content
VS Code

vamoose for VS Code

io.github.dcadolph/vamoose

Calendar workflow engine for time off, approvals, and quick actions on any calendar backend.

client:VS Code transport:stdio runtime:oci

Install vamoose in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vamoose-provider",
      "description": "VAMOOSE_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vamoose-timezone",
      "description": "VAMOOSE_TIMEZONE",
      "password": true
    }
  ],
  "servers": {
    "vamoose": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/dcadolph/vamoose:v0.35.0"
      ],
      "env": {
        "VAMOOSE_PROVIDER": "${input:vamoose-provider}",
        "VAMOOSE_TIMEZONE": "${input:vamoose-timezone}"
      }
    }
  }
}

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

vamoose in other clients