Skip to content
VS Code

gflow-cli for VS Code

io.github.ffroliva/gflow-cli

Drive Google Flow from an agent: Veo video and Imagen image generation

client:VS Code transport:stdio runtime:pypi

Install gflow-cli in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gflow-cli-home",
      "description": "GFLOW_CLI_HOME",
      "password": true
    }
  ],
  "servers": {
    "gflow-cli": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "gflow-cli"
      ],
      "env": {
        "GFLOW_CLI_HOME": "${input:gflow-cli-home}"
      }
    }
  }
}

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

gflow-cli in other clients