Auditable memory (memory3l) for VS Code
io.github.jayzht/memory3l-mcp
Audited memory over MCP: an append-only fact ledger plus verifiable invariants I1-I5.
client:VS Code
transport:stdio
runtime:pypi
Install Auditable memory (memory3l) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memory3l-root",
"description": "MEMORY3L_ROOT",
"password": true
},
{
"type": "promptString",
"id": "memory3l-db",
"description": "MEMORY3L_DB",
"password": true
},
{
"type": "promptString",
"id": "memory3l-allow-write",
"description": "MEMORY3L_ALLOW_WRITE",
"password": true
}
],
"servers": {
"memory3l-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"memory3l-mcp"
],
"env": {
"MEMORY3L_ROOT": "${input:memory3l-root}",
"MEMORY3L_DB": "${input:memory3l-db}",
"MEMORY3L_ALLOW_WRITE": "${input:memory3l-allow-write}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs