vault-mcp-server
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-mcp-serversearch for Docker networking notes"
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.
vault-mcp-server
Give Claude Code persistent memory with a Markdown vault.
An MCP server that turns any folder of Markdown files into a searchable, structured knowledge base. Claude Code can list, read, write, edit, search, and summarize your vault — across sessions, across machines.
What it does
7 tools exposed via MCP:
vault_list,vault_read,vault_write,vault_edit,vault_summary,vault_search,vault_reindexSemantic search powered by ChromaDB + sentence-transformers — ask questions in natural language, get relevant chunks back instead of full files
Metadata parsing — extracts status, dates, and custom fields from
**Key:** Valuepatterns in your MarkdownMultilingual — search and metadata work in English and Spanish out of the box
Incremental indexing — only re-embeds files that changed since last startup
Related MCP server: memory-wiki
Why Markdown
Markdown is the only format that is simultaneously human-readable, version-controllable, and LLM-friendly. No database to manage, no migration scripts. Your vault is just files — back them up with git, sync them with Nextcloud, edit them in Obsidian.
Architecture
┌─────────────────────┐ ┌──────────────────────┐
│ Claude Code │────>│ vault-mcp-server │
│ (any machine) │<────│ (FastMCP + HTTP) │
└─────────────────────┘ └──────┬───────────────┘
│
┌────────▼────────┐
│ Markdown Vault │
│ (any folder) │
└────────┬────────┘
│
┌────────▼────────┐
│ ChromaDB │
│ (semantic index)│
└─────────────────┘Quick start
1. Clone and configure
git clone https://github.com/thebackpackdevorg/vault-mcp-server.git
cd vault-mcp-serverEdit docker-compose.yml to point to your Markdown folder:
volumes:
- /path/to/your/markdown-vault:/vault2. Run
docker compose up -dThe server starts on port 8091 with Streamable HTTP transport.
3. Register in Claude Code
claude mcp add vault http://localhost:8091/mcp -t httpOr add to ~/.claude/settings.json:
{
"mcpServers": {
"vault": {
"type": "http",
"url": "http://localhost:8091/mcp"
}
}
}4. Use it
You: "What do I have documented about Docker networking?"
Claude: *calls vault_search("Docker networking")* → returns relevant chunks
You: "Update the status in homeserver-backlog.md to Done"
Claude: *calls vault_edit("homeserver/homeserver-backlog.md", "**Status:** Active", "**Status:** Done")*Remote deployment
To access the vault from other machines, expose it through a reverse proxy. The server supports an optional OAuth layer for authentication when deployed remotely.
With Cloudflare Tunnel + Access
Create a Cloudflare Tunnel pointing to
localhost:8091Add a Cloudflare Access policy with a Service Token
Configure Claude Code on remote machines:
{
"mcpServers": {
"vault": {
"type": "http",
"url": "https://vault.yourdomain.com/mcp",
"headers": {
"CF-Access-Client-Id": "${VAULT_CF_CLIENT_ID}",
"CF-Access-Client-Secret": "${VAULT_CF_CLIENT_SECRET}"
}
}
}
}With built-in OAuth
Set OAUTH_ISSUER_URL and optionally OAUTH_PIN in your environment to enable the built-in OAuth 2.1 provider with a PIN-based approval page.
The SSE vs Streamable HTTP gotcha
If you're deploying behind Cloudflare (or any proxy that buffers SSE), you may hit a silent failure where Claude Code connects but never gets responses.
The fix: This server uses Streamable HTTP (not SSE). Make sure your proxy passes through the Accept: application/json, text/event-stream header correctly. The server includes a middleware that injects this header if missing.
Tools reference
Tool | Description |
| List files with optional domain/status filters |
| Read a file with parsed metadata, sections, and cross-references |
| Create or overwrite a file |
| String replacement edit (like Claude's Edit tool) |
| Dashboard: file counts by domain, active projects, recent changes |
| Semantic search — returns relevant chunks, not full files |
| Force full re-index after external changes |
Configuration
config.yaml
vault:
path: "/vault"
server:
host: "0.0.0.0"
port: 8080
search:
chroma_path: "/app/chroma_data"
model: "paraphrase-multilingual-MiniLM-L12-v2"Environment variables (override config.yaml)
Variable | Default | Description |
|
| Path to your Markdown vault inside the container |
|
| Bind address |
|
| Internal port |
|
| ChromaDB storage path |
|
| Sentence-transformers model |
| (empty) | Set to enable OAuth (e.g. |
| (empty) | Optional PIN for the OAuth approval page |
Metadata conventions
The server parses **Key:** Value patterns in the first 15 lines of each file:
# My Project
**Status:** Active
**Created:** 2026-01-15
**Last Updated:** 2026-03-01Recognized status values: Active, Pending, Paused, Done (and Spanish equivalents).
Stack
Python 3.12 + FastMCP
ChromaDB for vector storage
sentence-transformers (
paraphrase-multilingual-MiniLM-L12-v2) for embeddingsDocker +
uvfor fast builds
License
MIT
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.
Latest Blog Posts
- 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/thebackpackdevorg/vault-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server