Memory Engine MCP for VS Code
io.github.simoneb79/memory-engine-mcp
Local-first graph memory for AI assistants with SQLite, semantic search, and MCP tools.
client:VS Code
transport:stdio
runtime:oci
Install Memory Engine MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memory-db-path",
"description": "MEMORY_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "markdown-source",
"description": "MARKDOWN_SOURCE",
"password": true
},
{
"type": "promptString",
"id": "memory-port",
"description": "MEMORY_PORT",
"password": true
}
],
"servers": {
"memory-engine-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/simoneb79/memory-engine-mcp:1.5.3"
],
"env": {
"MEMORY_DB_PATH": "${input:memory-db-path}",
"MARKDOWN_SOURCE": "${input:markdown-source}",
"MEMORY_PORT": "${input:memory-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs