Attestor for VS Code
io.github.bolnet/attestor
Self-hosted memory for agent teams. Bi-temporal replay, deterministic retrieval, audit log.
client:VS Code
transport:stdio
runtime:pypi
Install Attestor in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "attestor-path",
"description": "ATTESTOR_PATH",
"password": true
},
{
"type": "promptString",
"id": "attestor-disable-local-embed",
"description": "ATTESTOR_DISABLE_LOCAL_EMBED",
"password": true
},
{
"type": "promptString",
"id": "openai-api-key",
"description": "OPENAI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "openrouter-api-key",
"description": "OPENROUTER_API_KEY",
"password": true
}
],
"servers": {
"attestor": {
"type": "stdio",
"command": "uvx",
"args": [
"attestor"
],
"env": {
"ATTESTOR_PATH": "${input:attestor-path}",
"ATTESTOR_DISABLE_LOCAL_EMBED": "${input:attestor-disable-local-embed}",
"OPENAI_API_KEY": "${input:openai-api-key}",
"OPENROUTER_API_KEY": "${input:openrouter-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs