vault-server-MCP
Provides tools for reading, searching, creating, editing, and archiving markdown notes in an Obsidian vault.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vault-server-MCPSearch my vault for meeting notes from last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP server — Obsidian vault access
Remote MCP server (Streamable HTTP transport, OAuth 2.1 + PKCE auth) that gives Claude read/search/archive access to a folder of markdown notes (an Obsidian vault).
Auth is OAuth rather than a plain static token because claude.ai's custom connector UI only has fields for a URL and an OAuth Client ID/Secret — there is no field for a raw bearer token. See "Notes on auth" below for what that means in practice.
Project layout
app/
config.py # .env-driven settings (VAULT_PATH, OAUTH_CLIENT_ID/SECRET, HOST, PORT, LOG_LEVEL, LOG_FILE, PUBLIC_HOSTNAME)
mcp_instance.py # the shared FastMCP instance, wired with the OAuth provider + DNS-rebinding protection
oauth_provider.py # minimal single-tenant OAuth 2.1 authorization server (see below)
audit_log.py # file-based audit logger, wraps every tool call
vault.py # path-safety + filesystem logic (list/search/read/archive)
tools.py # the 5 MCP tools, thin wrappers over vault.py
server.py # builds the ASGI app from the FastMCP instance
main.py # entrypoint: uvicorn.run(app, host=..., port=...)
sample_vault/ # tiny fixture vault for local testing
scripts/manual_test.py # scripted client: runs the OAuth dance, then exercises all 5 tools
deploy/mcp-obsidian.service # example systemd (--user) unitRelated MCP server: pablo-obsidian-mcp
Tools exposed
read_index()— reads the vault's entry point, configured viaINDEX_PATHin.env(defaultREADME.md). Call this first.list_notes(folder=None)— lists files/folders, excludes_trash/.search_notes(query, limit=10)— full-text search across.mdfiles, excludes_trash/.read_note(path)— returns full file content.create_note(path, content)— creates a new file; fails if one already exists there.edit_note(path, content)— overwrites an existing file's full content; fails if it doesn't exist yet.archive_note(path)— moves a note into_trash/(never deletes physically).
create_note/edit_note can't write directly into _trash/ — that tree is
only ever populated by archive_note.
All path-taking tools reject absolute paths and .. segments (path traversal
protection lives in app/vault.py::resolve_safe_path).
Local setup
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .envEdit .env:
VAULT_PATH=./sample_vaultfor local testing (a real vault copy also works).OAUTH_CLIENT_ID/OAUTH_CLIENT_SECRET— set real random values, e.g.openssl rand -hex 32for each.Leave
PUBLIC_HOSTNAMEempty for local-only use.
Run it:
python main.pyIt binds to 127.0.0.1:8000 by default (see .env). The MCP endpoint is at
http://127.0.0.1:8000/mcp; OAuth endpoints (/authorize, /token,
/.well-known/oauth-authorization-server, …) live at the same host:port.
Testing before connecting to claude.ai
1. Auth check with curl — hitting the MCP endpoint with no token must
return 401 with a WWW-Authenticate header pointing at the protected
resource metadata (this is what tells claude.ai where to find the OAuth
endpoints):
curl -i http://127.0.0.1:8000/mcp
curl -i http://127.0.0.1:8000/.well-known/oauth-authorization-server2. Scripted smoke test — runs the full OAuth 2.1 + PKCE flow against
your own server (no browser needed — app/oauth_provider.py auto-approves,
since the real gate is knowing the client secret), then exercises all 5
tools against sample_vault/:
OAUTH_CLIENT_ID=<from .env> OAUTH_CLIENT_SECRET=<from .env> python scripts/manual_test.pyThe script creates, edits, and archives a scratch file under
sample_vault/_scratch/ as part of the run, so it's safe to re-run
repeatedly without resetting sample_vault/.
3. MCP Inspector (interactive, closest to how claude.ai will talk to it):
npx @modelcontextprotocol/inspectorIn the UI: Transport = Streamable HTTP, URL = http://127.0.0.1:8000/mcp.
Inspector will detect the 401 + metadata and walk you through the OAuth
flow itself, prompting for the Client ID/Secret from your .env.
Connecting to claude.ai
Team/Enterprise plan, as an owner: Admin settings → Connectors → Add custom connector →
URL:
https://<your-public-hostname>/mcpAdvanced settings → OAuth Client ID: value of
OAUTH_CLIENT_IDAdvanced settings → OAuth Client Secret: value of
OAUTH_CLIENT_SECRET
Each member then goes to Settings → Connectors, finds the connector, and clicks "Connect" — this runs them through the OAuth consent screen (which auto-approves) and gets them their own access token.
Deploying on the VPS (systemd, user-level service)
This runs as a systemctl --user service under your own account — no
dedicated system user or root-owned /opt directory needed. The only root
actions required, ever, are creating /vault (owned by your user) and
enabling "lingering" so the user service can run without an active login
session.
One-time, as root (or via
sudo):sudo mkdir -p /vault && sudo chown "$USER":"$USER" /vault sudo loginctl enable-linger "$USER"Copy the project to
~/mcp-obsidianon the VPS, create a venv there,pip install -r requirements.txt.Create
~/mcp-obsidian/.envwithVAULT_PATH=/vault, strongOAUTH_CLIENT_ID/OAUTH_CLIENT_SECRETvalues,PUBLIC_HOSTNAMEset to the hostname your reverse proxy serves (e.g. a nip.io address or your own domain), andLOG_FILE=~/mcp-obsidian/logs/server.log(expand~to the real home path — systemdEnvironmentFiledoesn't expand~).Install the unit file:
mkdir -p ~/.config/systemd/user cp deploy/mcp-obsidian.service ~/.config/systemd/user/ systemctl --user daemon-reload systemctl --user enable --now mcp-obsidian systemctl --user status mcp-obsidianPoint your reverse proxy (Caddy/nginx) at
127.0.0.1:8000, forwarding theAuthorizationheader through unchanged (this is the default behavior for both — just don't strip it in your config). The proxy also needs to own HTTPS for the exact hostname inPUBLIC_HOSTNAME, since that hostname is baked into the OAuth issuer/resource URLs.
Auto-deploy (GitHub Actions)
Every push to main runs .github/workflows/deploy.yml, which:
Rsyncs the repo to
/home/durov/mcp-obsidianon the VPS (never touching.env,logs/, or.venv/there — those are excluded).Runs
pip install -r requirements.txtin the existing venv.Restarts the
mcp-obsidianuser service.Hits
/mcplocally on the VPS and fails the workflow if it doesn't get the expected401(i.e. the service didn't come back up healthy).
This needs exactly one GitHub Actions secret, since the VPS host/user and its SSH host key are already pinned in the workflow file:
VPS_SSH_PRIVATE_KEY— private key of a dedicated deploy keypair (its public half is already installed in~/.ssh/authorized_keysfordurovon the VPS, separate from any personal/interactive SSH key).
Add it at: repo → Settings → Secrets and variables → Actions → New repository secret.
You can also trigger a deploy manually from the Actions tab (workflow
has workflow_dispatch enabled) without pushing a commit.
Notes on auth
The server is its own minimal OAuth 2.1 authorization server
(app/oauth_provider.py), not just a resource server checking someone
else's tokens. It registers exactly one pre-shared client — identified by
OAUTH_CLIENT_ID/OAUTH_CLIENT_SECRET from .env — and auto-approves
every /authorize request without a login screen. This is intentional for
a single-company internal tool: the actual security boundary is knowing the
client secret (kept by whoever adds the connector in claude.ai), exactly as
it was with the plain static bearer token this replaced. PKCE, redirect_uri
matching, client-secret verification, and access-token expiry are all
enforced by the mcp SDK itself — oauth_provider.py only stores and
retrieves codes/tokens (in memory; restarting the service invalidates
issued tokens, so anyone connected has to click "Connect" again).
If you ever need real per-user login (rather than one shared credential per
company), swap StaticClientOAuthProvider for a provider that redirects to
a real identity provider (Google Workspace, Microsoft Entra, etc.) in
authorize() — the rest of the server (tools.py, vault.py, the MCP
wiring) doesn't need to change.
This server cannot be installed
Maintenance
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
- Alicense-qualityFmaintenanceA local MCP server that enables AI applications like Claude Desktop to securely access and work with Obsidian vaults, providing capabilities for reading notes, executing templates, and performing semantic searches.Last updated834MIT
- Flicense-qualityCmaintenanceAn MCP server that provides full read/write access to an Obsidian vault, enabling searching, task management, wiki-link graph analysis, and attachment organization from an MCP client like Claude Code.Last updated
- Alicense-qualityCmaintenanceAn MCP server that enables Claude Desktop to read and write an Obsidian vault hosted on a VPS, using SSH or HTTP transport with OAuth authentication.Last updated1556MIT
- Alicense-qualityAmaintenanceAuthenticated remote MCP server that exposes a private GitHub-hosted Obsidian vault to Claude, enabling list, read, write, and search operations on notes.Last updated15MIT
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/DUROV-OS/vault-server-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server