Skip to content
VS Code

jules dispatch for VS Code

io.github.yuuqq/jules-dispatch

Batch-dispatch coding tasks to Google Jules: 50 parallel sessions, plan approval, PR collection.

client:VS Code transport:stdio runtime:npm

Install jules dispatch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jules-api-key",
      "description": "JULES_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jules-default-source",
      "description": "JULES_DEFAULT_SOURCE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jules-default-branch",
      "description": "JULES_DEFAULT_BRANCH",
      "password": true
    }
  ],
  "servers": {
    "jules-dispatch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@yuuqq/jules-dispatch"
      ],
      "env": {
        "JULES_API_KEY": "${input:jules-api-key}",
        "JULES_DEFAULT_SOURCE": "${input:jules-default-source}",
        "JULES_DEFAULT_BRANCH": "${input:jules-default-branch}"
      }
    }
  }
}

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

jules dispatch in other clients