Manage Obsidian Vaults with AI
MCP server that connects AI assistants to Obsidian vaults for reading, creating, editing, and managing notes and tags through the Model Context Protocol.
Maintainer of this project? Claim this page to edit the listing.
1.0.0Add to Favorites
Why it matters
Integrate your Obsidian vault with AI assistants, enabling them to read, create, edit, and manage your notes and tags programmatically.
Outcomes
What it gets done
Automate note creation, editing, and deletion.
Programmatically manage tags within your Obsidian vault.
Enable AI assistants to search and retrieve information from your notes.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-obsidian-mcp | bash Capabilities
Tools your agent gets
Read the contents of a note
Create a new note
Edit an existing note
Delete a note
Move a note to another location
Create a new directory
Search for notes in the vault
Add tags to a note
Overview
obsidian-mcp server
An MCP server enabling AI assistants to interact with Obsidian vaults through tools for reading, creating, editing, and managing notes and tags. Use when you want AI assistants to access and modify your Obsidian vault contents, with support for multiple vaults and comprehensive note management operations.
What it does
When you need AI assistants to interact with your Obsidian vault, obsidian-mcp provides read and write access to your notes, tags, and directory structure.
This server provides tools for note operations including read, create, edit, delete, and move notes; manage tags (add, remove, rename); search vault contents; create directories; and handle multi-vault setups.
Add to your Claude Desktop configuration (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"obsidian": {
"command": "npx",
"args": ["-y", "obsidian-mcp", "/path/to/your/vault", "/path/to/your/vault2"]
}
}
}
Replace /path/to/your/vault with your absolute vault path (e.g., /Users/username/Documents/MyVault on macOS/Linux or C:\\Users\\username\\Documents\\MyVault on Windows). Requires Node.js 20 or higher. Warning: This MCP has read and write access - backup your vault before use.
Source README
Obsidian MCP Server
An MCP (Model Context Protocol) server that enables AI assistants to interact with Obsidian vaults, providing tools for reading, creating, editing and managing notes and tags.
Warning!!!
This MCP has read and write access (if you allow it). Please. PLEASE backup your Obsidian vault prior to using obsidian-mcp to manage your notes. I recommend using git, but any backup method will work. These tools have been tested, but not thoroughly, and this MCP is in active development.
Features
- Read and search notes in your vault
- Create new notes and directories
- Edit existing notes
- Move and delete notes
- Manage tags (add, remove, rename)
- Search vault contents
Requirements
- Node.js 20 or higher (might work on lower, but I haven't tested it)
- An Obsidian vault
Install
Installing Manually
Add to your Claude Desktop configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"obsidian": {
"command": "npx",
"args": ["-y", "obsidian-mcp", "/path/to/your/vault", "/path/to/your/vault2"]
}
}
}
Replace /path/to/your/vault with the absolute path to your Obsidian vault. For example:
MacOS/Linux:
"/Users/username/Documents/MyVault"
Windows:
"C:\\Users\\username\\Documents\\MyVault"
Restart Claude for Desktop after saving the configuration. You should see the hammer icon appear, indicating the server is connected.
If you have connection issues, check the logs at:
- MacOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
Installing via Smithery
Warning: I am not affiliated with Smithery. I have not tested using it and encourage users to install manually if they can.
To install Obsidian for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install obsidian-mcp --client claude
Development
# Clone the repository
git clone https://github.com/StevenStavrakis/obsidian-mcp
cd obsidian-mcp
# Install dependencies
npm install
# Build
npm run build
Then add to your Claude Desktop configuration:
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["<absolute-path-to-obsidian-mcp>/build/main.js", "/path/to/your/vault", "/path/to/your/vault2"]
}
}
}
Available Tools
read-note- Read the contents of a notecreate-note- Create a new noteedit-note- Edit an existing notedelete-note- Delete a notemove-note- Move a note to a different locationcreate-directory- Create a new directorysearch-vault- Search notes in the vaultadd-tags- Add tags to a noteremove-tags- Remove tags from a noterename-tag- Rename a tag across all notesmanage-tags- List and organize tagslist-available-vaults- List all available vaults (helps with multi-vault setups)
Documentation
Additional documentation can be found in the docs directory:
creating-tools.md- Guide for creating new toolstool-examples.md- Examples of using the available tools
Security
This server requires access to your Obsidian vault directory. When configuring the server, make sure to:
- Only provide access to your intended vault directory
- Review tool actions before approving them
Troubleshooting
Common issues:
Server not showing up in Claude Desktop
- Verify your configuration file syntax
- Make sure the vault path is absolute and exists
- Restart Claude Desktop
Permission errors
- Ensure the vault path is readable/writable
- Check file permissions in your vault
Tool execution failures
- Check Claude Desktop logs at:
- macOS:
~/Library/Logs/Claude/mcp*.log - Windows:
%APPDATA%\Claude\logs\mcp*.log
- macOS:
- Check Claude Desktop logs at:
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.