Skip to content
VS Code

meet live assist for VS Code

io.github.krystiangw/meet-live-assist

Your own agent inside a live Google Meet or Zoom call. Local-first, no hosted service.

client:VS Code transport:stdio runtime:npm

Install meet live assist in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mla-url",
      "description": "MLA_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transcripts-dir",
      "description": "TRANSCRIPTS_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mla-token",
      "description": "MLA_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "meet-live-assist": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "meet-live-assist-server"
      ],
      "env": {
        "MLA_URL": "${input:mla-url}",
        "TRANSCRIPTS_DIR": "${input:transcripts-dir}",
        "MLA_TOKEN": "${input:mla-token}"
      }
    }
  }
}

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

meet live assist in other clients