Skip to content
VS Code

Notes for VS Code

io.github.abhishekkumar2021/notes

Local markdown notes: ranked + semantic search, tags, todos, and a wiki-link knowledge graph.

client:VS Code transport:stdio runtime:npm

Install Notes in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "notes-dir",
      "description": "NOTES_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "notes-readonly",
      "description": "NOTES_READONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "notes-model-dir",
      "description": "NOTES_MODEL_DIR",
      "password": true
    }
  ],
  "servers": {
    "notes": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/notes"
      ],
      "env": {
        "NOTES_DIR": "${input:notes-dir}",
        "NOTES_READONLY": "${input:notes-readonly}",
        "NOTES_MODEL_DIR": "${input:notes-model-dir}"
      }
    }
  }
}

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

Notes in other clients