MCP-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., "@MCP-Vaultsave a note: buy groceries, tag it personal"
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 — a tiny personal MCP server
Notes + bookmarks, stored in a single SQLite file, exposed to Claude through 5 tools:
add_note, add_bookmark, search_notes, list_notes, delete_note.
1. Install uv (one-time)
Open PowerShell and run:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"Close and reopen your terminal after this so uv is on PATH.
Related MCP server: MCP Notes Server
2. Set up the project
Unzip this folder somewhere permanent, e.g. C:\Users\<you>\mcp-vault. Then from inside it:
cd C:\Users\<you>\mcp-vault
uv syncThis creates a virtual environment and installs fastmcp.
3. Test it standalone (before touching Claude Desktop)
uv run fastmcp dev server.pyThis opens the MCP Inspector in your browser. Click into the Tools tab, try calling
add_note with some text, then list_notes — you should see it come back. Ctrl+C to stop
it once you're happy.
4. Wire it into Claude Desktop
Open (or create) this file:
%APPDATA%\Claude\claude_desktop_config.jsonAdd a vault entry under mcpServers. If the file already has other servers in it, just
add this key alongside them — don't replace the whole file.
{
"mcpServers": {
"vault": {
"command": "uv",
"args": [
"run",
"--directory",
"C:\\Users\\<you>\\mcp-vault",
"fastmcp",
"run",
"server.py"
]
}
}
}Replace C:\\Users\\<you>\\mcp-vault with wherever you actually put the folder — use
double backslashes as shown.
5. Restart Claude Desktop
Fully quit it (right-click the tray icon → Quit, not just closing the window) and reopen. Look for the tools icon in the chat box — click it and you should see the 5 vault tools listed.
6. Try it
"Save a note: renew passport, tag it todo"
"Save this link: https://example.com, title it Example, tag it reference"
"What have I saved tagged todo?"
"Search my notes for passport"
"Delete note 1"
Your data lives in vault.db right next to server.py — it's just a SQLite file, so you
can open it with any SQLite browser if you want to poke at it directly.
Screenshots
Notes
Every tool's docstring is what Claude reads to decide when to call it — if you rename or repurpose a tool, keep the docstring accurate, that's the whole interface.
If Claude Desktop doesn't pick up the server, check
%APPDATA%\Claude\logs\for errors — usually it's a wrong path in the config.
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