Skip to content
VS Code

Workflow MCP for VS Code

io.github.juliusolsson05/workflow-mcp

Session-bound Docker workflow server through Codex. State is discarded with the container.

client:VS Code transport:stdio runtime:oci

Install Workflow MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "workflow-mcp-concurrency",
      "description": "WORKFLOW_MCP_CONCURRENCY",
      "password": true
    }
  ],
  "servers": {
    "workflow-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/juliusolsson/workflow-mcp@sha256:4b6889f9e78d0208e6d1d343ba23d0c5d092b1a1513a73c9c85deb2d00ab5855"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "WORKFLOW_MCP_CONCURRENCY": "${input:workflow-mcp-concurrency}"
      }
    }
  }
}

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

Workflow MCP in other clients