Skip to content
VS Code

LinkLore for VS Code

io.linklore/llre

AI-native structured memory for agents (MCP). Built for agents, not humans.

client:VS Code transport:stdio runtime:pypi

Install LinkLore in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "linklore-lang",
      "description": "LINKLORE_LANG",
      "password": true
    }
  ],
  "servers": {
    "llre": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "llre"
      ],
      "env": {
        "LINKLORE_LANG": "${input:linklore-lang}"
      }
    }
  }
}

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

LinkLore in other clients