YourMemory for VS Code
io.github.sachitrafa/yourmemory
Persistent memory for AI agents. Memories decay with time and strengthen on recall.
client:VS Code
transport:stdio
runtime:pypi
Install YourMemory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pythonioencoding",
"description": "PYTHONIOENCODING",
"password": true
}
],
"servers": {
"yourmemory": {
"type": "stdio",
"command": "uvx",
"args": [
"yourmemory"
],
"env": {
"PYTHONIOENCODING": "${input:pythonioencoding}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs