claude-obsidian
Integrates with Obsidian via the Local REST API plugin, enabling Claude to create, read, update, delete, and search notes in an Obsidian vault, with template-based tools for PRDs, meeting notes, Jira logs, ideas, and processes.
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., "@claude-obsidianCreate a PRD for the new onboarding flow"
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.
claude-obsidian MCP
A Model Context Protocol (MCP) server that connects Claude Desktop to your Obsidian vault — making Obsidian the single source of truth for all your PM work: PRDs, processes, Jira notes, meeting notes, and ideas.
What This Enables
Once installed, you can talk to Claude naturally and it will automatically manage your Obsidian notes:
Say to Claude | What happens |
"Create a PRD for the new onboarding flow" | Creates a structured PRD in |
"Log notes for PROJ-123, it's about payment timeout" | Creates |
"Create meeting notes for today's sprint planning" | Creates a structured meeting note in |
"Capture this thought: we should rethink the checkout UX" | Saves to |
"Document the deployment process" | Creates a process SOP in |
"Search my notes for authentication" | Full-text search across your entire vault |
"Show me my vault overview" | Lists all folders and note counts |
"Set up my vault structure" | Creates all folders + index notes in one shot |
Related MCP server: Obsidian Nexus
Prerequisites
1. Obsidian + Local REST API Plugin
Open Obsidian
Go to Settings → Community plugins → Browse
Search for "Local REST API" and install it
Enable it, then go to Settings → Local REST API
Copy the API Key shown there — you'll need it in Step 3 below
Leave Obsidian open while using Claude (the plugin serves on
localhost:27124)
Note: Your vault is at
/Users/harunzeybek/Documents
2. Node.js
Requires Node.js 18 or later. Check with:
node --versionInstallation
Step 1 — Clone & Build
git clone https://github.com/harunzybk/claude-obsidian.git
cd claude-obsidian
npm install
npm run buildStep 2 — Note the full path to the built server
pwd
# e.g. /Users/harunzeybek/Repositories/claude-obsidianThe server binary is at: <that path>/dist/index.js
Step 3 — Configure Claude Desktop
Open your Claude Desktop config file:
open ~/Library/Application\ Support/Claude/claude_desktop_config.jsonAdd the following inside the "mcpServers" object (replace YOUR_API_KEY with the key from Step 1):
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["/Users/harunzeybek/Repositories/claude-obsidian/dist/index.js"],
"env": {
"OBSIDIAN_API_KEY": "YOUR_API_KEY",
"OBSIDIAN_VAULT_PATH": "/Users/harunzeybek/Documents",
"OBSIDIAN_USE_HTTPS": "true"
}
}
}
}If the file doesn't exist yet, create it with the full content above.
Step 4 — Restart Claude Desktop
Quit and reopen Claude Desktop. You should see "obsidian" listed as a connected MCP server (look for the 🔌 icon or check Settings → Developer).
Step 5 — Initialize Your Vault Structure
In Claude Desktop, say:
"Set up my Obsidian vault structure"
Claude will create all folders and index notes automatically.
Available Tools
Note Operations
Tool | Description |
| Create a new note at any path |
| Read a note's full content |
| Replace a note's content |
| Add content to the end of a note |
| Delete a note |
| List files in a folder |
Search
Tool | Description |
| Full-text search across the vault |
| Find notes by Obsidian |
Vault Management
Tool | Description |
| List folders |
| Create a new folder |
| Top-level structure + note counts |
PM Templates
Tool | Description |
| Structured PRD with goals, requirements, success metrics |
| SOP / process documentation |
| Rich Jira ticket context notes |
| Quick idea / brain dump |
| Meeting notes with agenda + action items |
| Project overview and tracking |
| Initialize all folders + index notes |
Vault Folder Structure
Your Vault (Documents/)
├── Home.md ← Start here — links to everything
├── PRDs/ ← Product Requirements Documents
├── Processes/ ← SOPs and process documentation
├── Jira/ ← Jira ticket context notes
├── Meetings/ ← Meeting notes (YYYY-MM-DD-title.md)
├── Ideas/ ← Quick thoughts and brain dumps
├── Projects/ ← Project tracking notes
└── Resources/ ← Reference materialsTroubleshooting
Claude says it can't connect to Obsidian
Make sure Obsidian is open
Check that "Local REST API" plugin is enabled in Obsidian
Verify the API key in your
claude_desktop_config.jsonis correct
"Cannot find module" error
Run
npm run buildagain in the project folderMake sure the path in
claude_desktop_config.jsonpoints todist/index.js, notsrc/index.ts
HTTPS certificate error
Set
"OBSIDIAN_USE_HTTPS": "false"in your config (HTTP mode)
Development
npm run dev # Watch mode — recompiles on change
npm run build # Production build
npm start # Run the compiled serverLicense
MIT © harunzybk
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/harunzybk/claude-obsidian'
If you have feedback or need assistance with the MCP directory API, please join our Discord server