Skip to content
VS Code

Conductor for VS Code

io.github.jarmstrong158/conductor

Local task scheduler and worker manager with MCP integration for Claude Desktop.

client:VS Code transport:stdio runtime:pypi

Install Conductor in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gmail-user",
      "description": "GMAIL_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gmail-app-password",
      "description": "GMAIL_APP_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "conductor": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "conductor-mcpserver"
      ],
      "env": {
        "GMAIL_USER": "${input:gmail-user}",
        "GMAIL_APP_PASSWORD": "${input:gmail-app-password}"
      }
    }
  }
}

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

Conductor in other clients