memory pulse for VS Code
io.github.t-crew/memory-pulse
Corrections that outlive the session. A guard blocks the edit that writes the old value back.
client:VS Code
transport:stdio
runtime:npm
Install memory pulse in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memory-pulse-key",
"description": "MEMORY_PULSE_KEY",
"password": true
}
],
"servers": {
"memory-pulse": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"memory-pulse"
],
"env": {
"MEMORY_PULSE_KEY": "${input:memory-pulse-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs