Skip to content
VS Code

agentic-recall for VS Code

io.github.dfrancislyondflabc-tech/agentic-recall

Long-term memory for agentic tasks. It tells you when it doesn't know.

client:VS Code transport:stdio runtime:npm

Install agentic-recall in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memory-dir",
      "description": "MEMORY_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memory-root",
      "description": "MEMORY_ROOT",
      "password": true
    }
  ],
  "servers": {
    "agentic-recall": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentic-recall"
      ],
      "env": {
        "MEMORY_DIR": "${input:memory-dir}",
        "MEMORY_ROOT": "${input: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

agentic-recall in other clients