delx memory for VS Code
io.github.davidmosiah/delx-memory
Local-first persistent memory MCP: shared SQLite key/value store, searchable, TTL-aware, secret-safe
client:VS Code
transport:stdio
runtime:npm
Install delx memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "delx-memory-path",
"description": "DELX_MEMORY_PATH",
"password": true
},
{
"type": "promptString",
"id": "delx-memory-transport",
"description": "DELX_MEMORY_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "delx-memory-host",
"description": "DELX_MEMORY_HOST",
"password": true
},
{
"type": "promptString",
"id": "delx-memory-port",
"description": "DELX_MEMORY_PORT",
"password": true
},
{
"type": "promptString",
"id": "delx-memory-allowed-origin",
"description": "DELX_MEMORY_ALLOWED_ORIGIN",
"password": true
}
],
"servers": {
"delx-memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"delx-memory"
],
"env": {
"DELX_MEMORY_PATH": "${input:delx-memory-path}",
"DELX_MEMORY_TRANSPORT": "${input:delx-memory-transport}",
"DELX_MEMORY_HOST": "${input:delx-memory-host}",
"DELX_MEMORY_PORT": "${input:delx-memory-port}",
"DELX_MEMORY_ALLOWED_ORIGIN": "${input:delx-memory-allowed-origin}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs