memory for VS Code
io.github.velixarai/memory
Persistent memory for AI assistants. Store, search, and recall across sessions.
client:VS Code
transport:stdio
runtime:npm
Install memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "velixar-api-key",
"description": "VELIXAR_API_KEY",
"password": true
}
],
"servers": {
"memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"velixar-mcp-server"
],
"env": {
"VELIXAR_API_KEY": "${input:velixar-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