Skip to content
VS Code

CogniRelay for VS Code

io.github.stef-k/cognirelay

Self-hosted agent continuity server with bounded, recoverable memory and restart orientation.

client:VS Code transport:stdio runtime:pypi

Install CogniRelay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cognirelay-repo-root",
      "description": "COGNIRELAY_REPO_ROOT",
      "password": true
    }
  ],
  "servers": {
    "cognirelay": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cognirelay"
      ],
      "env": {
        "COGNIRELAY_REPO_ROOT": "${input:cognirelay-repo-root}"
      }
    }
  }
}

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

CogniRelay in other clients