mcp memory graph for VS Code
io.github.yonasvalentin/mcp-memory-graph
Local-first memory for Claude Code and any MCP client: hybrid search + knowledge graph, $0/token.
client:VS Code
transport:stdio
runtime:npm
Install mcp memory graph in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-memory-db-path",
"description": "MCP_MEMORY_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "mcp-memory-model",
"description": "MCP_MEMORY_MODEL",
"password": true
}
],
"servers": {
"mcp-memory-graph": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-memory-graph"
],
"env": {
"MCP_MEMORY_DB_PATH": "${input:mcp-memory-db-path}",
"MCP_MEMORY_MODEL": "${input:mcp-memory-model}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs