inspeximus: agent memory with provenance, GDPR erasure and a tamper-evident audit trail for VS Code
io.github.dancenitra/inspeximus
Self-correcting agent memory: recall, supersede, revert, forget, GDPR erasure, audit receipts.
client:VS Code
transport:stdio
runtime:pypi
Install inspeximus: agent memory with provenance, GDPR erasure and a tamper-evident audit trail in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "inspeximus-path",
"description": "INSPEXIMUS_PATH",
"password": true
},
{
"type": "promptString",
"id": "inspeximus-echo-guard",
"description": "INSPEXIMUS_ECHO_GUARD",
"password": true
},
{
"type": "promptString",
"id": "inspeximus-embed-url",
"description": "INSPEXIMUS_EMBED_URL",
"password": true
},
{
"type": "promptString",
"id": "inspeximus-embed-model",
"description": "INSPEXIMUS_EMBED_MODEL",
"password": true
}
],
"servers": {
"inspeximus": {
"type": "stdio",
"command": "uvx",
"args": [
"inspeximus"
],
"env": {
"INSPEXIMUS_PATH": "${input:inspeximus-path}",
"INSPEXIMUS_ECHO_GUARD": "${input:inspeximus-echo-guard}",
"INSPEXIMUS_EMBED_URL": "${input:inspeximus-embed-url}",
"INSPEXIMUS_EMBED_MODEL": "${input:inspeximus-embed-model}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs