mcp-obsidian-second-brain
Allows storing and retrieving memories as markdown files in an Obsidian vault, with YAML frontmatter, PARA organization, wiki-links, and full-text search.
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-obsidian-second-brainsave a memory about the quarterly planning session"
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-obsidian-second-brain
An MCP (Model Context Protocol) server that gives Claude a persistent, structured memory system backed by an Obsidian vault. Memories are stored as Markdown files with YAML frontmatter using the PARA method (Projects, Areas, Resources, Archives).
Installation
Option 1: npx from GitHub (no clone required)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"obsidian-second-brain": {
"command": "npx",
"args": ["-y", "@neverprepared/mcp-obsidian-second-brain"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/obsidian/vault"
}
}
}
}Option 2: Clone and run locally
git clone https://github.com/neverprepared/mcp-obsidian-second-brain.git
cd mcp-obsidian-second-brain
npm install
npm run buildThen add to your Claude Desktop config:
{
"mcpServers": {
"obsidian-second-brain": {
"command": "node",
"args": ["/absolute/path/to/mcp-obsidian-second-brain/dist/index.js"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/obsidian/vault"
}
}
}
}Option 3: Claude Code (CLI)
Add to ~/.claude/claude_desktop_config.json or run:
claude mcp add obsidian-second-brain \
-e OBSIDIAN_VAULT_PATH=/path/to/your/obsidian/vault \
-- npx -y @neverprepared/mcp-obsidian-second-brainRelated MCP server: Vault MCP Server
Configuration
Environment Variable | Default | Description |
|
| Path to your Obsidian vault directory |
|
| Log verbosity: |
|
| Minimum shared tags required for auto-linking memories |
The vault directory will be created automatically on first run with the PARA folder structure.
Tools
Tool | Description |
| Create a new memory in a PARA category with optional tags and source URLs |
| Fetch a specific memory by ID or title |
| Full-text search with relevance scoring, tag filters ( |
| Paginated listing with filters by PARA, tags, status, and date range |
| Update content, tags, PARA category (moves file), or title (renames file) |
| Set a memory's status to archived |
| Permanently delete a memory (cascades to clean up backlinks) |
| Create bidirectional |
| Create projects with deadlines, mark complete, or list active projects |
| Vault health summary: counts by PARA/status, stale memories, orphans, top tags |
| Bulk list/archive/delete stale, archived, or orphaned memories (safe |
Vault Structure
<OBSIDIAN_VAULT_PATH>/
├── Projects/ # Time-bound goals (stale after 30 days)
├── Areas/ # Ongoing responsibilities (stale after 90 days)
├── Resources/ # Reference material (stale after 180 days)
├── Archives/ # Inactive memories (stale after 365 days)
└── _daily/ # Daily notes (auto-appended on each store)Each memory is a Markdown file with YAML frontmatter. Files are named by slugified title and support bidirectional [[wiki-links]].
Development
npm run dev # Run with tsx (no build required)
npm run build # Compile TypeScript to dist/
npm run typecheck # Type-check without emitting
npm test # Run all tests
npm run test:watch # Watch mode
npm run test:coverage # Coverage reportCopy .env.example to .env and set OBSIDIAN_VAULT_PATH before running locally.
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
- AlicenseBqualityDmaintenanceAn MCP server that gives AI assistants persistent memory across sessions. It stores project context, decisions, and progress in structured markdown files as well as a knowledge graph and sequential thinking for better memory storage.Last updated36631MIT
- Flicense-qualityAmaintenanceBuilt on Obsidian Vault, this MCP server integrates with Claude Code to provide personal knowledge management including note saving, full-text search, code graph extraction, and context resumption.Last updated1
- Alicense-qualityCmaintenanceMCP server that implements Karpathy's LLM Wiki pattern for Obsidian vaults, enabling persistent knowledge storage and BM25 search across AI sessions.Last updated401MIT
- Alicense-qualityBmaintenanceAn MCP server that provides controlled read/write tools for managing local-first research memory in an Obsidian vault, enabling AI agents to maintain project context across sessions.Last updated6551MIT
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
An MCP server for deep research or task groups
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
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/neverprepared/mcp-obsidian-second-brain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server