Skip to main content
Glama
santiagopoli

obsidian-vault-mcp

by santiagopoli

Obsidian Vault MCP

A self-hosted Model Context Protocol server for private Obsidian vaults stored in GitHub. It runs on Cloudflare Workers, authenticates the vault owner with OAuth 2.1, and exposes Markdown notes, an Obsidian-compatible link graph, and a durable event stream for vault automations.

The server does not run Obsidian. It derives links, backlinks, aliases, tags, embeds, unresolved references, and shortest paths from an immutable GitHub tree snapshot.

Security model

The default deployment is deliberately single-owner:

  • One immutable GitHub user ID may authorize MCP clients.

  • Only repositories in GITHUB_REPOSITORIES are addressable.

  • A fine-grained GitHub token must be restricted to exactly those repositories.

  • Each MCP client requires an explicit consent screen after GitHub login.

  • Read-only deployments do not register the write tool.

  • Writable deployments require vault:write; updates use the current Git blob SHA and reject stale or blind overwrites.

  • Secrets stay in Cloudflare and are never part of this repository.

Do not add unrelated users to a deployment backed by one shared token. See Multi-user architecture for the correct isolation model.

Related MCP server: Obsidian MCP (pgvector + Ollama, self-hosted)

Tools

Tool

Purpose

obsidian_list_vaults

List explicitly configured vault repositories.

obsidian_list_notes

Browse visible Markdown paths.

obsidian_search_notes

Search note contents through GitHub.

obsidian_read_note

Read one Markdown note with its current SHA.

obsidian_write_note

Create or safely replace a note; available only in write mode.

obsidian_get_note_links

Resolve outgoing links, embeds, backlinks, and broken references.

obsidian_get_graph

Page through nodes, edges, tags, aliases, and orphans.

obsidian_find_path

Find a deterministic shortest path between notes.

obsidian_list_events

Inspect canonical note-created, updated, and deleted events.

obsidian_list_automations

Inspect the server's configured internal automations.

obsidian_list_automation_runs

Inspect automation attempts and outcomes.

Deploy your own instance

Follow the complete self-hosting guide. The short version is:

  1. Fork this repository.

  2. Create Cloudflare KV, D1, and Queues resources plus an OAuth App on GitHub.

  3. Create a fine-grained GitHub token restricted to selected vault repositories.

  4. Copy wrangler.example.jsonc to the ignored wrangler.jsonc and enter only non-secret deployment values.

  5. Upload the four base runtime secrets to Cloudflare, apply the D1 migrations, and deploy. Add OPENAI_API_KEY only when enabling an AI automation.

  6. Connect an MCP client to https://your-host/mcp and approve its consent screen.

  7. After the manual deployment passes its smoke tests, connect Cloudflare Workers Builds to the fork or enable the protected GitHub Actions alternative.

Development

bun install --frozen-lockfile
bun run check

bun run check runs strict TypeScript, 80+ unit tests, a production dependency audit, and a Wrangler bundle dry-run. CI runs the same command without deployment credentials.

Limits

  • Up to 1,000 Markdown notes and 8 MB of Markdown source per graph snapshot.

  • Up to 512 KB per note.

  • Graph data is cached by repository and immutable Git tree revision for five minutes.

  • Hidden paths and non-Markdown files are never exposed as notes.

  • Writes create Git commits; rename and delete operations are intentionally unavailable.

  • GitHub is canonical: pushes made by Obsidian, the MCP, GitHub's UI, or another Git client produce the same events.

  • Automation handlers are internal and explicitly configured; summarize-note writes only managed summaries and arbitrary outbound callback URLs are not supported yet.

  • One repository receives immediate webhook delivery per deployment; every allowlisted vault is still reconciled on the fifteen-minute schedule.

See Vault events and automations for delivery, filtering, retries, and the write-loop policy.

Project status

The personal self-hosted model is implemented. Shared multi-user hosting is a separate design and requires a GitHub App installation per tenant; it is not enabled by this codebase today.

See Security, security model, and contributing.

License

MIT

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • A
    license
    B
    quality
    C
    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
    -
    quality
    B
    maintenance
    Self-hosted MCP server that provides embedding-powered semantic search with graph context over Obsidian vaults, supporting multiple vaults, local embeddings, and a web dashboard.
    MIT

View all related MCP servers

Related MCP Connectors

  • Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

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/santiagopoli/obsidian-vault-mcp'

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