obsidian-mcp
An MCP (Model Context Protocol) server for Obsidian vaults. Connects Claude (or any MCP client) directly to your vault — read, write, search, navigate links, and manage notes, canvases, and kanban boards.
Why obsidian-mcp?
The official Obsidian MCP plugin requires the Obsidian desktop app to be running and only works on the same machine. obsidian-mcp is a standalone server — no Obsidian app needed.
The intended setup is to host obsidian-mcp on a server or NAS where your vault is continuously synced (via Syncthing, git, rclone, or Obsidian Sync). Claude then connects to that server over the network, so:
- Always up to date — the server sees every change your Obsidian app writes, immediately
- Access from anywhere — connect from Claude Desktop, Claude Code, or any MCP client on any machine, without the vault being present locally
- Multiple clients — several Claude sessions can read the vault simultaneously; writes are serialized with per-file locking
- No app dependency — the server runs headless and starts automatically (systemd, Docker, etc.)
[Obsidian app] ──sync──► [vault on server] ◄──MCP── [Claude on any machine]
(phone/laptop) (NAS / VPS) (Claude Desktop / Code)
Features
- Read & Search — read notes, search full-text (exact/regex/fuzzy, optionally combined with a frontmatter filter or scoped to filenames), render embedded transclusions, inspect note outlines, list every file in the vault regardless of type
- Duplicate prevention —
find_similar_notes_toolranks notes by TF-IDF similarity so a new note doesn't duplicate an existing one under different wording - Schema linting —
lint_schema_toolvalidates frontmatter against the enums declared in your own_AI_INSTRUCTIONS.md, plus an optional cron-friendly health-check script - Write — create/overwrite notes (with automatic frontmatter preservation, dry-run previews, and unified diffs), patch sections or anchor-less body text, append content, update frontmatter (single or batch), manage tags, move notes with automatic wikilink rewriting
- Folders — list (optionally recursive with a full tree dump), create, delete, rename folders; renaming rewrites path-based wikilinks vault-wide
- Query & Graph — backlinks, broken links, orphan detection, BFS link graph, vault stats, task collection across vault
- Dataview-like queries — filter notes by tags, status, frontmatter fields (exact match or
$ne/$in/$nin/$existsoperators), or inline fields (key:: value) - Audit log — every write-tool call is recorded ({timestamp, tool, path, summary});
get_audit_log_tool/get_note_history_toolquery it - Periodic Notes — read/preview daily, weekly, monthly, quarterly, yearly journal notes from templates
- Canvas (opt-in via
ENABLE_CANVAS) — read, create, and patch Obsidian Canvas (.canvas) files - Excalidraw (opt-in via
ENABLE_EXCALIDRAW) — read, create, and patch Obsidian Excalidraw (*.excalidraw.md) drawings - Kanban (opt-in via
ENABLE_KANBAN) — read, create, and manipulate Obsidian Kanban boards (columns and cards) - Bases (opt-in via
ENABLE_BASES) — read, create, and patch Obsidian Bases (.base) files — YAML-defined table/cards/list views over existing frontmatter properties - Attachments — list, read (text or base64), and add binary files
- Two auth variants — a static API key (Claude Code, Desktop, curl) and, optionally, GitHub OAuth (claude.ai Web/Mobile Custom Connector) — usable independently or at the same time
- Templates — render Obsidian templates with built-in (
{{date}},{{title}}, …) and custom variables - MCP Resources — expose vault notes, stats, and tags as MCP resources for direct context injection
- MCP Prompts —
weekly_review,daily_notestarting points for common workflows
Installation
Via uvx (no clone needed):
VAULT_PATH=/your/vault uvx obsidian-remote-mcp
Via Docker (no Python needed):
docker compose up -d # see docker-compose.yml
From source:
git clone https://github.com/ykoellmann/obsidian-mcp.git
cd obsidian-mcp
uv sync
uv run obsidian-remote-mcp
Configuration
Copy .env.example to .env and set your vault path:
VAULT_PATH=/path/to/your/obsidian/vault
# Optional:
# READ_ONLY=true # prevent all writes
# WRITE_PATHS=Notes/,Inbox/ # restrict writes to specific folders
# TRANSPORT=stdio # stdio (default), http (recommended for network use), or sse (legacy)
Full list of variables — including API_KEY, PUBLIC_BASE_URL, and the
OAUTH_GITHUB_* variables for the optional second auth variant — is
documented with inline comments in .env.example; see Remote Setup
for the two auth variants in detail.
Optional plugin-format tools (Canvas / Excalidraw / Kanban / Bases)
[!WARNING] Breaking change: as of this version, the Canvas, Excalidraw, and Kanban tool groups are disabled by default, alongside the new Bases tools. If you already rely on any of them, set the matching flag(s) below — otherwise those tools disappear from your client's tool list after upgrading.
# ENABLE_CANVAS=true # .canvas file tools
# ENABLE_EXCALIDRAW=true # *.excalidraw.md file tools
# ENABLE_KANBAN=true # Kanban board tools
# ENABLE_BASES=true # .base file tools (Obsidian core plugin, 1.9.0+)
Each defaults to false. A disabled group's tools aren't just refused at
call time — they're never registered, so they don't appear in the tool list
at all.
Usage with Claude Code
Add to your MCP config (e.g. ~/.claude/mcp.json):
{
"mcpServers": {
"obsidian": {
"command": "uv",
"args": ["--directory", "/path/to/obsidian-mcp", "run", "obsidian-remote-mcp"],
"env": {
"VAULT_PATH": "/path/to/your/obsidian/vault"
}
}
}
}
Usage with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"obsidian": {
"command": "uv",
"args": ["--directory", "/path/to/obsidian-mcp", "run", "obsidian-remote-mcp"],
"env": {
"VAULT_PATH": "/path/to/your/obsidian/vault"
}
}
}
}
Docker
# 1. Copy and edit the environment variables
cp .env.example .env
# 2. Set HOST_VAULT_PATH and API_KEY in .env, then:
docker compose up -d
The docker-compose.yml pulls the pre-built image from GHCR — no cloning or building required. To build locally instead, swap image: for build: . in the compose file.
If you enable GitHub OAuth (see Option B), uncomment the fastmcp-data volume in docker-compose.yml so logins survive container restarts.
The image has a built-in HEALTHCHECK against GET /health (unauthenticated, no vault content — just {status, vault_path, index_ready}), visible in docker ps/docker compose ps. Only meaningful for TRANSPORT=http/sse; a no-op for stdio.
Health-Check Cron (Frontmatter Schema)
Separate from the /health liveness check above: scripts/health_check.py runs lint_schema_tool's logic directly (no MCP client needed) and, only if it finds notes whose frontmatter violates the enums declared in your _AI_INSTRUCTIONS.md, drops a report note into your vault's inbox folder. Silent when the vault is clean — no note, no noise.
# One-off / manual run:
VAULT_PATH=/path/to/vault HEALTH_CHECK_INBOX=00-Inbox python scripts/health_check.py
To run it weekly via cron against the running container:
# crontab -e (on the Docker host)
0 6 * * 1 docker exec obsidian-mcp-obsidian-mcp-1 \
env VAULT_PATH=/vault HEALTH_CHECK_INBOX=00-Inbox python scripts/health_check.py
Swap the container name for whatever docker compose ps shows, and HEALTH_CHECK_INBOX for your vault's actual inbox folder (default Inbox).
Remote Setup (Recommended)
Run obsidian-mcp on a server and connect to it remotely. Network transports
(sse/streamable-http) need at least one of the two auth variants below —
API key and GitHub OAuth are independent and can be used at the same
time: keep the API key for Claude Code/Desktop/curl while adding OAuth only
for claude.ai, or use either one alone.
Security: Always put a TLS-terminating reverse proxy (e.g. Caddy) in front when exposing to the internet — required for GitHub OAuth callbacks in particular, since GitHub rejects plain
http://callback URLs except onlocalhost.API_KEY/OAuth are not needed for stdio transport (local use only).
Option A: API key (Claude Code, Claude Desktop, curl, mcp-remote)
1. Generate an API key:
openssl rand -hex 32
2. Configure the server (docker-compose.yml or .env):
VAULT_PATH=/data/vault
TRANSPORT=http
API_KEY=your-generated-key
(sse also works here, but see the note under Option B — http is the
more robust choice and works identically for this bearer-key setup.)
3. Start:
docker compose up -d # or: uv run obsidian-remote-mcp
4. Connect from your MCP client (anywhere on the network):
{
"mcpServers": {
"obsidian": {
"type": "http",
"url": "https://your-server/mcp",
"headers": {
"Authorization": "Bearer your-generated-key"
}
}
}
}
Option B: GitHub OAuth (claude.ai Web/Mobile Custom Connector)
claude.ai's "Custom Connector" UI only has fields for OAuth (Authorization URL, Token URL, Client ID/Secret) — no field for a bearer token or custom header. obsidian-mcp handles the whole OAuth protocol for you (discovery endpoints, PKCE, token exchange); you only ever hand claude.ai your server's URL.
1. Create a GitHub OAuth App: GitHub → Settings → Developer settings → OAuth Apps → New OAuth App.
- Homepage URL: your server's public URL (e.g.
https://obsidian.example.com) - Authorization callback URL: the same URL +
/auth/callback(e.g.https://obsidian.example.com/auth/callback)
Copy the generated Client ID and Client Secret.
2. Configure the server (docker-compose.yml or .env):
VAULT_PATH=/data/vault
TRANSPORT=http
PUBLIC_BASE_URL=https://obsidian.example.com # must match the GitHub callback host
OAUTH_GITHUB_CLIENT_ID=your-client-id
OAUTH_GITHUB_CLIENT_SECRET=your-client-secret
OAUTH_GITHUB_ALLOWED_LOGINS=your-github-username # comma-separated; required, no "allow anyone" fallback
OAUTH_GITHUB_ALLOWED_LOGINS is enforced at login: only the listed GitHub
accounts can authenticate, everyone else is rejected, even with a valid
GitHub account.
Use
TRANSPORT=http, notsse.ssecaused OAuth authorization errors with claude.ai specifically (token issued fine server-side, but claude.ai never followed up with a request) —httpfixed it.
3. Start:
docker compose up -d # or: uv run obsidian-remote-mcp
4. Connect from claude.ai: Settings → Connectors → Add Custom Connector,
and enter just the server URL (https://obsidian.example.com/mcp). claude.ai
discovers everything else (/.well-known/oauth-authorization-server, PKCE,
etc.) automatically and redirects you to GitHub to log in on first connect.
Persistence in Docker: OAuth client registrations and tokens are stored under FastMCP's own data directory, which is not inside the vault volume by default. Without a persistent mount there, every container restart logs claude.ai out and forces re-authentication. Set
FASTMCP_HOMEto a mounted path (seedocker-compose.yml) to avoid that.
Keep the vault synced on the server with Syncthing, git+cron, rclone, or Obsidian Sync — obsidian-mcp picks up changes automatically via its file watcher.
Vault Conventions (Customization)
Create _AI_INSTRUCTIONS.md in your vault root to teach the AI how your specific vault is organized:
## Structure
- `Notes/` — evergreen notes and concepts
- `Projects/` — active and archived projects (tag: #project/active, #project/done)
- `Journal/` — daily notes (YYYY-MM-DD.md)
## Frontmatter Schema
- status: active | done | inbox
- tags: nested with / (e.g. #concept/programming)
## Conventions
- Link by stem only, never by full path
- Every note needs a created: date in frontmatter
The server loads this file at startup and sends it to the AI as system instructions. Without it, built-in generic Obsidian syntax guidance is used. The _AI_INSTRUCTIONS.md is the right place for everything vault-specific — folder layout, tag schema, naming conventions, and any workflow rules.
Tool Reference
| Category | Tools |
|---|---|
| Read | list_notes, read_note, search_notes, render_note, get_note_outline |
| Write | write_note, patch_note, delete_note, restore_note, append_to_note, patch_frontmatter, manage_tags, move_note, find_replace_in_vault |
| Folders | list_folder, create_folder, delete_folder, restore_folder, rename_folder, list_trash |
| Query | query_notes, get_backlinks, get_broken_links, get_orphans, get_link_graph, get_vault_stats, get_tasks, resolve_alias |
| Tags | get_notes_by_tag, get_tag_tree, list_all_tags |
| Periodic | get_daily_note, get_periodic_note |
| Canvas | list_canvases, read_canvas, write_canvas, patch_canvas |
| Excalidraw | list_excalidraw, read_excalidraw, write_excalidraw, patch_excalidraw |
| Kanban | read_kanban, create_kanban_board, add_kanban_card, move_kanban_card, delete_kanban_card |
| Bases | list_bases, read_base, write_base, patch_base |
| Attachments | list_attachments, read_attachment, add_attachment |
| Templates | list_templates, create_from_template |
Canvas, Excalidraw, Kanban, and Bases are each opt-in (see Optional plugin-format tools above) — their tools only appear once the matching ENABLE_* flag is set.
Full parameter documentation is embedded in the server and shown automatically to connected AI clients.
Architecture
src/obsidian_mcp/
├── config.py # env-based config (VAULT_PATH, READ_ONLY, WRITE_PATHS)
├── server.py # FastMCP entry point, tool and resource registrations
├── domain/
│ ├── models.py # Note dataclass (frontmatter, tags, wikilinks, tasks, …)
│ ├── parser.py # Markdown parser (YAML frontmatter, wikilinks, block refs, …)
│ └── index.py # VaultIndex — alias resolution, backlinks, tag tree, BFS
├── storage/
│ ├── filesystem.py # atomic writes (temp + os.replace), path validation
│ ├── locking.py # per-file filelock to prevent concurrent write conflicts
│ └── watcher.py # watchdog-based vault change detection (polling fallback)
└── tools/
├── read.py # read_note, search_notes, render_note, get_note_outline
├── write.py # write_note, patch_note, move_note, manage_tags, …
├── query.py # graph tools, task aggregation, periodic notes, query_notes
├── folders.py # folder management
├── canvas.py # Obsidian Canvas (.canvas JSON) tools
├── excalidraw.py # Obsidian Excalidraw (*.excalidraw.md) tools
├── kanban.py # Obsidian Kanban plugin tools
├── bases.py # Obsidian Bases (.base YAML) tools
├── attachments.py # binary and text attachment handling
├── templates.py # template rendering with variable substitution
└── prompts.py # MCP Prompts (weekly_review, daily_note)
Development
uv run pytest # run tests (330 tests)
uv run ruff check src/ tests/ # lint
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file obsidian_remote_mcp-1.1.0.tar.gz.
File metadata
- Download URL: obsidian_remote_mcp-1.1.0.tar.gz
- Upload date:
- Size: 159.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e1c9175bcdf95aaa33e110dfb2c84b57565952683cf664acace2af71bf15f8
|
|
| MD5 |
b0df8f11909af30311f128aa70e2ef1a
|
|
| BLAKE2b-256 |
1c09d32182e8408e395efa3b89f3115272630daf1be1c02ef69766de24b2d4e1
|
File details
Details for the file obsidian_remote_mcp-1.1.0-py3-none-any.whl.
File metadata
- Download URL: obsidian_remote_mcp-1.1.0-py3-none-any.whl
- Upload date:
- Size: 73.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fbe0af756be4f1bad26c3553a0b50063f2864e122b95cb5bdfd3568bf8791f2
|
|
| MD5 |
c23452dca8c77b987fb248e244035198
|
|
| BLAKE2b-256 |
b3fa8239cf914112354edc841e079414a6af9f5075eeaad9e2edcead37672c31
|