Skip to main content
Glama

Vault Bridge

Bridge your AI assistant to local knowledge vaults — read, write, search, and manage notes without cloud dependencies.

Features

  • read_note — Read a note with optional frontmatter parsing

  • write_note — Write notes with YAML frontmatter support

  • list_notes — List notes with glob filtering and recursion

  • search_notes — Regex search across vault content

  • search_frontmatter — Query notes by frontmatter key/value

  • get_daily_note — Get or create daily notes with templates

Related MCP server: obsidian-codex-mcp

Installation

pip install airgap-vault-bridge

Usage

CLI (Direct)

vault-bridge

MCP Client Config (Claude Desktop, Cursor, VS Code)

Windows (requires full path to executable):

{
  "mcpServers": {
    "vault": {
      "command": "C:\Users\<user>\AppData\Local\hermes\hermes-agent\venv\Scripts\vault-bridge.exe",
      "env": {
        "OBSIDIAN_MCP_VAULT_PATH": "C:/path/to/vault"
      }
    }
  }
}

macOS/Linux (if on PATH):

{
  "mcpServers": {
    "vault": {
      "command": "vault-bridge",
      "env": {
        "OBSIDIAN_MCP_VAULT_PATH": "/path/to/vault"
      }
    }
  }
}

DXT (Claude Desktop 1-Click)

Download airgap-vault-bridge-1.0.2.dxt from Releases → drag into Claude Desktop.

Configuration

Environment Variable

Default

Description

OBSIDIAN_MCP_VAULT_PATH

Current directory

Path to vault root

VAULT_BRIDGE_MAX_FILE_SIZE

10MB

Max file size for operations

VAULT_BRIDGE_DEFAULT_ENCODING

utf-8

Text encoding

VAULT_BRIDGE_INDEX_FRONTMATTER

true

Parse YAML frontmatter

VAULT_BRIDGE_FOLLOW_SYMLINKS

false

Follow symlinks

Tool Reference

read_note

{
  "path": "Projects/roadmap.md",
  "include_frontmatter": true
}

write_note

{
  "path": "Projects/new-idea.md",
  "content": "# New Idea\n\nDetails here...",
  "frontmatter": { "tags": ["idea", "draft"], "status": "wip" }
}

list_notes

{
  "path": "Projects",
  "glob_pattern": "**/*.md",
  "recursive": true
}

search_notes

{
  "pattern": "MCP",
  "path": ".",
  "max_results": 50
}

search_frontmatter

{
  "key": "status",
  "value": "done",
  "operator": "eq"
}

get_daily_note

{
  "date": "2026-08-21",
  "folder": "Daily Notes",
  "create_if_missing": true
}

Windows-Specific Notes

  • The executable is installed to C:\Users\<user>\AppData\Local\hermes\hermes-agent\venv\Scripts\vault-bridge.exe when using Hermes

  • Always use the full .exe path in MCP client configs on Windows — bare commands like vault-bridge will fail with ENOENT because the venv Scripts folder is not on system PATH

  • Use forward slashes in environment variable values (C:/path/to/vault) — they work fine in JSON

  • Escape backslashes in JSON command paths (C:\Users\...)

License

MIT

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Local-first MCP server for Obsidian vaults with 66 tools for reading, writing, searching, and managing notes, tasks, graphs, and more. Works without Obsidian running and requires no plugins.
    66
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for Obsidian that exposes tools for reading/writing notes, managing frontmatter and tags, querying Tasks, semantic search, and interacting with Obsidian Bases, with shared local caching and support for various runtime modes.
    39
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for Obsidian vaults — multi-brain manager with templates, persistent registry, search, CRUD, frontmatter, wikilinks and context bundling. Works with Hermes Agent and Claude Code simultaneously.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Airgap-fleet/vault-bridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server