Skip to content
VS Code

Perenna for VS Code

io.github.scarletkc/perenna

A lightweight, Git-backed permanent memory for AI agents.

client:VS Code transport:stdio runtime:pypi

Install Perenna in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "perenna-git-remote",
      "description": "PERENNA_GIT_REMOTE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vexor-api-key",
      "description": "VEXOR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vexor-remote-rerank-api-key",
      "description": "VEXOR_REMOTE_RERANK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vexor-config-json",
      "description": "VEXOR_CONFIG_JSON",
      "password": true
    }
  ],
  "servers": {
    "perenna": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "perenna"
      ],
      "env": {
        "PERENNA_GIT_REMOTE": "${input:perenna-git-remote}",
        "VEXOR_API_KEY": "${input:vexor-api-key}",
        "VEXOR_REMOTE_RERANK_API_KEY": "${input:vexor-remote-rerank-api-key}",
        "VEXOR_CONFIG_JSON": "${input:vexor-config-json}"
      }
    }
  }
}

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

Perenna in other clients