Skip to content
VS Code

Repo Memory for VS Code

io.github.yubinkim444/repo-memory

Shared, git-tracked working memory for AI agents on the same codebase.

client:VS Code transport:stdio runtime:pypi

Install Repo Memory in VS Code

.vscode/mcp.json

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

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

Repo Memory in other clients