mnemograph for VS Code
io.github.tm42/mnemograph
Event-sourced knowledge graph memory for AI coding agents with semantic search
client:VS Code
transport:stdio
runtime:pypi
Install mnemograph in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memory-path",
"description": "MEMORY_PATH",
"password": true
}
],
"servers": {
"mnemograph": {
"type": "stdio",
"command": "uvx",
"args": [
"mnemograph"
],
"env": {
"MEMORY_PATH": "${input:memory-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs