nanomem for VS Code
io.github.ombansod2/nanomem
Memory that knows when a remembered fact has been replaced, not just when it was written.
client:VS Code
transport:stdio
runtime:pypi
Install nanomem in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nanomem-vault",
"description": "NANOMEM_VAULT",
"password": true
},
{
"type": "promptString",
"id": "nanomem-password",
"description": "NANOMEM_PASSWORD",
"password": true
}
],
"servers": {
"nanomem": {
"type": "stdio",
"command": "uvx",
"args": [
"nanomem"
],
"env": {
"NANOMEM_VAULT": "${input:nanomem-vault}",
"NANOMEM_PASSWORD": "${input:nanomem-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs