Skip to content
VS Code

knowledge graph mcp for VS Code

io.github.zcsabbagh/knowledge-graph-mcp

Knowledge graph MCP for student learning with spaced repetition and mastery tracking

client:VS Code transport:stdio runtime:pypi

Install knowledge graph mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "knowledge-graph-db-path",
      "description": "KNOWLEDGE_GRAPH_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "knowledge-graph-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "knowledge-graph-mcp"
      ],
      "env": {
        "KNOWLEDGE_GRAPH_DB_PATH": "${input:knowledge-graph-db-path}"
      }
    }
  }
}

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

knowledge graph mcp in other clients