Skip to content
VS Code

darwin-memo for VS Code

io.github.rogermsc/darwin-memo

Self-curating agent memory kept honest by survival-based selection over measured outcomes.

client:VS Code transport:stdio runtime:pypi

Install darwin-memo in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "darwin-memo-path",
      "description": "DARWIN_MEMO_PATH",
      "password": true
    }
  ],
  "servers": {
    "darwin-memo": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "darwin-memo"
      ],
      "env": {
        "DARWIN_MEMO_PATH": "${input:darwin-memo-path}"
      }
    }
  }
}

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

darwin-memo in other clients