Skip to content
VS Code

seekstone for VS Code

io.github.shaqmughal/seekstone

Filesystem-direct Obsidian MCP server — search and edit your vault with low context-tax.

client:VS Code transport:stdio runtime:npm

Install seekstone in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "seekstone-vault",
      "description": "SEEKSTONE_VAULT",
      "password": true
    }
  ],
  "servers": {
    "seekstone": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "seekstone"
      ],
      "env": {
        "SEEKSTONE_VAULT": "${input:seekstone-vault}"
      }
    }
  }
}

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

seekstone in other clients