MCP-Vault
Vault — 一个微型个人MCP服务器
笔记 + 书签,存储在单个 SQLite 文件中,通过 5 个工具暴露给 Claude:
add_note、add_bookmark、search_notes、list_notes、delete_note。
1. 安装 uv(一次性操作)
打开 PowerShell 并运行:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"完成后关闭并重新打开终端,以便 uv 出现在 PATH 中。
Related MCP server: MCP Notes Server
2. 设置项目
将此文件夹解压到某个永久位置,例如 C:\Users\<你>\mcp-vault。然后在该文件夹内运行:
cd C:\Users\<you>\mcp-vault
uv sync这将创建一个虚拟环境并安装 fastmcp。
3. 独立测试(在接入 Claude Desktop 之前)
uv run fastmcp dev server.py这会在浏览器中打开 MCP Inspector。点击 "Tools" 标签页,尝试调用
add_note 并输入一些文本,然后调用 list_notes——你应该能看到刚才添加的内容。满意后按 Ctrl+C 停止。
4. 接入 Claude Desktop
打开(或创建)以下文件:
%APPDATA%\Claude\claude_desktop_config.json在 mcpServers 下添加一个 vault 条目。如果文件中已有其他服务器,只需将此键与它们并列添加——不要替换整个文件。
{
"mcpServers": {
"vault": {
"command": "uv",
"args": [
"run",
"--directory",
"C:\\Users\\<you>\\mcp-vault",
"fastmcp",
"run",
"server.py"
]
}
}
}将 C:\\Users\\<你>\\mcp-vault 替换为你实际存放文件夹的位置——请使用如所示的双反斜杠。
5. 重启 Claude Desktop
完全退出(右键单击系统托盘图标 → 退出,而非仅关闭窗口)并重新打开。在聊天框中查找工具图标——点击它,你应该能看到列出的 5 个 vault 工具。
6. 尝试使用
"保存一条笔记:更新护照,标签为 todo"
"保存此链接:https://example.com,标题为 Example,标签为 reference"
"我保存了什么标签为 todo 的内容?"
"搜索我的笔记中关于 passport 的内容"
"删除笔记 1"
你的数据存储在 server.py 旁边的 vault.db 中——它就是一个 SQLite 文件,因此你可以用任何 SQLite 浏览器直接打开查看。
截图
备注
每个工具的文档字符串是 Claude 决定何时调用它的依据——如果你重命名或重新调整工具用途,请务必保持文档字符串准确,这就是整个接口。
如果 Claude Desktop 没有加载该服务器,请检查
%APPDATA%\Claude\logs\中的错误——通常是由于配置中的路径错误。
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
- AlicenseNot gradedqualityDmaintenanceA zero-dependency MCP server that provides a persistent personal knowledge base for Claude using local JSON file storage. It enables users to manage notes through tools for adding, searching, and indexing content built entirely with Node.js built-ins.111MIT
- AlicenseNot gradedqualityBmaintenanceA beginner-friendly MCP server for managing personal notes. Enables Claude to create, list, read, search, update, and delete notes saved as Markdown files.MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that gives Claude a persistent personal notebook. Notes are stored on disk as JSON, so they survive restarts and are shared across every tool and resource.
- AlicenseAqualityBmaintenanceA personal notes MCP server that allows AI assistants to create, search, edit, and manage notes stored in a local SQLite database.6MIT
Related MCP Connectors
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
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/manalmanzoor/MCP-Vault'
If you have feedback or need assistance with the MCP directory API, please join our Discord server