vault-mcp
Markdown + SQLite knowledge store with bidirectional wikilinks, exposed as an MCP server for AI agents to maintain an interconnected knowledge base.
README
vault-mcp
Markdown + SQLite knowledge store with bidirectional [[wikilinks]], exposed as an MCP server. Designed for AI agents to maintain an interconnected knowledge base.
Installation
uvx vault-mcp # run directly without install
pip install vault-mcp # core (keyword search only)
pip install "vault-mcp[semantic]" # + embedding-based semantic search
Running the MCP Server
# Start with default settings (vault in ./vault)
vault-mcp
# Custom vault directory
VAULT_DIR=/path/to/notes vault-mcp
# With semantic search enabled
VAULT_DIR=./vault VAULT_EMBEDDING_MODEL=jinaai/jina-embeddings-v5-text-nano vault-mcp
Environment Variables
| Variable | Default | Description |
|---|---|---|
VAULT_DIR |
./vault |
Root directory for markdown files |
VAULT_EMBEDDING_MODEL |
(none) | Sentence-transformers model name. Enables semantic search when set |
Client Configuration
Claude Code
claude mcp add vault -- vault-mcp
Or .mcp.json:
{
"mcpServers": {
"vault": {
"type": "stdio",
"command": "vault-mcp",
"env": { "VAULT_DIR": "./vault" }
}
}
}
Cursor / Windsurf / Other MCP Clients
Add to your MCP settings:
{
"vault": {
"command": "vault-mcp",
"env": { "VAULT_DIR": "./vault" }
}
}
Python Library (no MCP)
from vault_mcp import MarkdownVault, create_vault_tools
vault = MarkdownVault("./my-vault")
vault.write("skill/debugging", {"type": "skill", "confidence": "pattern"}, "# Debugging\n\n...")
# Or get all 11 tools as a dict of callables
tools = create_vault_tools(vault)
result = tools["vault_search"](query="debugging", mode="keyword")
Note Format
Each note is a .md file with YAML frontmatter, organized in type-based folders:
vault/
skill/
timeout-diagnosis.md
concept/
connection-pooling.md
episodic/
2024-01-15-incident.md
---
type: skill
tags: [database, timeout]
confidence: pattern
status: active
---
# Timeout Diagnosis
Description of the skill...
## Evidence
- [[episodic/2024-01-15-incident]]: First observed during outage
## Related
- [[concept/connection-pooling]]
Frontmatter Fields
| Field | Required | Values |
|---|---|---|
type |
Yes | skill, episodic, concept, failure-pattern, system-knowledge |
confidence |
Yes | fact, pattern, heuristic |
tags |
No | Free-form string list |
status |
Auto | active, superseded, archived |
Tools
Write & Edit
| Tool | Description |
|---|---|
vault_write(path, frontmatter, body) |
Create or overwrite a note |
vault_write_batch(entries) |
Write multiple notes atomically |
vault_edit(path, operation, params) |
Incremental edit (4 operations below) |
vault_delete(path) |
Delete a note |
vault_rename(old_path, new_path) |
Rename + auto-rewrite all backlinks |
Edit Operations
| Operation | Params | Use |
|---|---|---|
replace_string |
{"old": "...", "new": "..."} |
Inline corrections |
set_frontmatter |
{"confidence": "fact"} |
Update metadata |
replace_section |
{"heading": "## Evidence", "body": "..."} |
Rewrite a section |
append_section |
{"heading": "## Evidence", "content": "..."} |
Append to a section |
Read & Browse
| Tool | Description |
|---|---|
vault_read(path) |
Read frontmatter + body |
vault_list(path, depth, type_filter) |
Browse directory |
Search & Discovery
| Tool | Description |
|---|---|
vault_search(query, filters, mode, limit) |
FTS5 / semantic / hybrid search |
vault_backlinks(path) |
Who links to this note |
vault_traverse(start, depth, direction) |
BFS graph traversal with directed edges |
vault_lint() |
Find dead links + orphan notes |
Validation
Every write/edit automatically checks and returns warnings:
- Required frontmatter fields (
type,confidence) - Valid enum values
- H1 heading present in body
- All
[[wikilinks]]resolve to existing notes
The write succeeds regardless — warnings are informational for the agent to decide whether to fix.
Architecture
.md files (source of truth, git-trackable)
│
▼
.vault.db (SQLite index, auto-rebuilt if deleted)
├── notes — YAML frontmatter metadata
├── notes_fts — FTS5 full-text search
├── links — [[wikilink]] directed graph
├── tags — tag index
└── notes_vec — embedding vectors (optional)
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。