mnemex for VS Code
io.github.simplemindedbot/mnemex
Temporal memory for AI with decay and reinforcement. Two-layer storage (JSONL + Markdown).
client:VS Code
transport:stdio
runtime:pypi
Install mnemex in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mnemex-storage-path",
"description": "MNEMEX_STORAGE_PATH",
"password": true
},
{
"type": "promptString",
"id": "ltm-vault-path",
"description": "LTM_VAULT_PATH",
"password": true
},
{
"type": "promptString",
"id": "mnemex-decay-model",
"description": "MNEMEX_DECAY_MODEL",
"password": true
},
{
"type": "promptString",
"id": "mnemex-pl-halflife-days",
"description": "MNEMEX_PL_HALFLIFE_DAYS",
"password": true
}
],
"servers": {
"mnemex": {
"type": "stdio",
"command": "uvx",
"args": [
"mnemex"
],
"env": {
"MNEMEX_STORAGE_PATH": "${input:mnemex-storage-path}",
"LTM_VAULT_PATH": "${input:ltm-vault-path}",
"MNEMEX_DECAY_MODEL": "${input:mnemex-decay-model}",
"MNEMEX_PL_HALFLIFE_DAYS": "${input:mnemex-pl-halflife-days}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs