Skip to content
VS Code

memex for VS Code

io.github.iamtouchskyer/memex

Zettelkasten-based agent memory system with bidirectional links

client:VS Code transport:stdio runtime:npm

Install memex in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memex-home",
      "description": "MEMEX_HOME",
      "password": true
    }
  ],
  "servers": {
    "memex": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@touchskyer/memex"
      ],
      "env": {
        "MEMEX_HOME": "${input:memex-home}"
      }
    }
  }
}

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

memex in other clients