context keeper for VS Code
io.github.jarmstrong158/context-keeper
Durable project-memory MCP: decisions, constraints, and pipelines across Claude sessions.
client:VS Code
transport:stdio
runtime:pypi
Install context keeper in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "context-keeper-project",
"description": "CONTEXT_KEEPER_PROJECT",
"password": true
}
],
"servers": {
"context-keeper": {
"type": "stdio",
"command": "uvx",
"args": [
"context-keeper-mcp"
],
"env": {
"CONTEXT_KEEPER_PROJECT": "${input:context-keeper-project}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs