Skip to content
VS Code

fcop for VS Code

io.github.joinwell52-ai/fcop

Durable tasks, reports, reviews and branch convergence for multi-agent teams over local files.

client:VS Code transport:stdio runtime:pypi

Install fcop in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fcop-project-dir",
      "description": "FCOP_PROJECT_DIR",
      "password": true
    }
  ],
  "servers": {
    "fcop": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fcop-mcp"
      ],
      "env": {
        "FCOP_PROJECT_DIR": "${input:fcop-project-dir}"
      }
    }
  }
}

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

fcop in other clients