Skip to content
VS Code

Hive Vault for VS Code

io.github.mlorentedev/hive-vault

On-demand Obsidian vault access for AI coding assistants — 17 tools, 5 resources, 4 prompts.

client:VS Code transport:stdio runtime:pypi

Install Hive Vault in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vault-path",
      "description": "VAULT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hive-ollama-endpoint",
      "description": "HIVE_OLLAMA_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openrouter-api-key",
      "description": "OPENROUTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hive-vault-scopes",
      "description": "HIVE_VAULT_SCOPES",
      "password": true
    }
  ],
  "servers": {
    "hive-vault": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "hive-vault"
      ],
      "env": {
        "VAULT_PATH": "${input:vault-path}",
        "HIVE_OLLAMA_ENDPOINT": "${input:hive-ollama-endpoint}",
        "OPENROUTER_API_KEY": "${input:openrouter-api-key}",
        "HIVE_VAULT_SCOPES": "${input:hive-vault-scopes}"
      }
    }
  }
}

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

Hive Vault in other clients