Skip to content
VS Code

slivingdoc for VS Code

io.github.baalimago/slivingdoc

Share ordinary text files between concurrent agents without silently overwriting edits.

client:VS Code transport:stdio runtime:npm

Install slivingdoc in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "slivingdoc-bucket",
      "description": "SLIVINGDOC_BUCKET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-profile",
      "description": "AWS_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-endpoint-url-s3",
      "description": "AWS_ENDPOINT_URL_S3",
      "password": true
    },
    {
      "type": "promptString",
      "id": "slivingdoc-workspace-root",
      "description": "SLIVINGDOC_WORKSPACE_ROOT",
      "password": true
    }
  ],
  "servers": {
    "slivingdoc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "slivingdoc"
      ],
      "env": {
        "SLIVINGDOC_BUCKET": "${input:slivingdoc-bucket}",
        "AWS_PROFILE": "${input:aws-profile}",
        "AWS_REGION": "${input:aws-region}",
        "AWS_ENDPOINT_URL_S3": "${input:aws-endpoint-url-s3}",
        "SLIVINGDOC_WORKSPACE_ROOT": "${input:slivingdoc-workspace-root}"
      }
    }
  }
}

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

slivingdoc in other clients