Engraphy for VS Code
io.github.devon-clarkk/engraphy
Self-hosted MCP memory server: a typed knowledge graph on Postgres 16 and pgvector.
client:VS Code
transport:stdio
runtime:oci
Install Engraphy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "engraphy-database-url",
"description": "ENGRAPHY_DATABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "engraphy-bind-host",
"description": "ENGRAPHY_BIND_HOST",
"password": true
},
{
"type": "promptString",
"id": "engraphy-bind-port",
"description": "ENGRAPHY_BIND_PORT",
"password": true
}
],
"servers": {
"engraphy": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/devon-clarkk/engraphy:0.3.0"
],
"env": {
"ENGRAPHY_DATABASE_URL": "${input:engraphy-database-url}",
"ENGRAPHY_BIND_HOST": "${input:engraphy-bind-host}",
"ENGRAPHY_BIND_PORT": "${input:engraphy-bind-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs