Skip to content
VS Code

CoS Codex Bridge for VS Code

io.github.av-labs-co/cos-codex-bridge

Operate Codex projects and tasks from a Chief of Staff with scoped access and durable receipts.

client:VS Code transport:stdio runtime:npm

Install CoS Codex Bridge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cos-bridge-config",
      "description": "COS_BRIDGE_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "cos-codex-bridge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cos-codex-bridge"
      ],
      "env": {
        "COS_BRIDGE_CONFIG": "${input:cos-bridge-config}"
      }
    }
  }
}

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

CoS Codex Bridge in other clients