Skip to content
VS Code

stellavault for VS Code

io.github.evanciel/stellavault

Local-first MCP server: Claude searches, asks & drafts from your Obsidian vault. 21 tools, no keys.

client:VS Code transport:stdio runtime:npm

Install stellavault in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stellavault-db-path",
      "description": "STELLAVAULT_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "stellavault": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stellavault"
      ],
      "env": {
        "STELLAVAULT_DB_PATH": "${input:stellavault-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

stellavault in other clients