Skip to content
VS Code

MemoraEU for VS Code

io.github.pquattro/memoraeu

Zero-knowledge persistent memory layer for AI agents. Encrypted client-side, hosted in France.

client:VS Code transport:stdio runtime:pypi

Install MemoraEU in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memoraeu-api-key",
      "description": "MEMORAEU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memoraeu-secret",
      "description": "MEMORAEU_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memoraeu-salt",
      "description": "MEMORAEU_SALT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memoraeu-api-url",
      "description": "MEMORAEU_API_URL",
      "password": true
    }
  ],
  "servers": {
    "memoraeu": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "memoraeu-mcp"
      ],
      "env": {
        "MEMORAEU_API_KEY": "${input:memoraeu-api-key}",
        "MEMORAEU_SECRET": "${input:memoraeu-secret}",
        "MEMORAEU_SALT": "${input:memoraeu-salt}",
        "MEMORAEU_API_URL": "${input:memoraeu-api-url}"
      }
    }
  }
}

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

MemoraEU in other clients