Skip to content
VS Code

elesync for VS Code

io.github.darknodebros/elesync

Private local-first AI workspace for shared context, knowledge, tasks, and memories

client:VS Code transport:stdio runtime:pypi

Install elesync in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "elesync-dir",
      "description": "ELESYNC_DIR",
      "password": true
    }
  ],
  "servers": {
    "elesync": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "elesync"
      ],
      "env": {
        "ELESYNC_DIR": "${input:elesync-dir}"
      }
    }
  }
}

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

elesync in other clients