Skip to content
VS Code

wisdomgraph for VS Code

io.github.cklam12345/wisdomgraph

Neo4j-native DIKW memory for Claude Code — knowledge that compounds across sessions

client:VS Code transport:stdio runtime:npm

Install wisdomgraph in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wisdom-neo4j-password",
      "description": "WISDOM_NEO4J_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "wisdomgraph": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wisdomgraph"
      ],
      "env": {
        "WISDOM_NEO4J_PASSWORD": "${input:wisdom-neo4j-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

wisdomgraph in other clients