obsidian-mcp
Provides tools to manage an Obsidian vault, including listing folders, reading notes, creating and updating notes, deleting notes, renaming and moving notes, and deleting folders.
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., "@obsidian-mcpcreate a new note called 'Meeting Notes' in my vault"
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.
Obsidian MCP
An MCP (Model Context Protocol) server that gives AI assistants (Claude, Cursor, etc.) access to your Obsidian vault. Navigate folders, read notes, create, edit, move, rename and delete them — all from your AI chat.
Requirements
Python 3.10+
uv (recommended) or pip
An Obsidian vault on your local machine
Related MCP server: mcp-obsidian
Installation
# Clone the repo
git clone https://github.com/your-username/obsidian-mcp
cd obsidian-mcp
# Copy the env template and set your vault path
cp .env.example .envEdit .env and set your vault path:
OBSIDIAN_VAULT_PATH="/Users/you/Documents/MyVault"To find your vault path in Obsidian: Settings → About → Vault path.
Running the server
Development (with MCP Inspector UI)
uv run mcp dev server.pyThis opens the MCP Inspector in your browser where you can test all tools interactively.
Production
uv run server.pyConnecting to Cursor
Add this to your .cursor/mcp.json (or Cursor global MCP settings):
{
"mcpServers": {
"obsidian": {
"command": "python",
"args": ["/absolute/path/to/obsidian-mcp/server.py"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}Replace /absolute/path/to/obsidian-mcp/server.py with the actual path to server.py on your machine, and /path/to/your/vault with your vault path (find it in Obsidian: Settings → About → Vault path).
Connecting to Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"obsidian": {
"command": "uv",
"args": ["run", "/absolute/path/to/obsidian-mcp/server.py"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}Available Tools
Tool | Description |
| List subfolders and notes inside a vault folder. Leave empty for vault root. |
| Read the full content of a note (path relative to vault root). |
| Create a new note. Creates intermediate folders if needed. |
| Replace the full content of an existing note. |
| Delete a note from the vault. |
| Rename a note keeping it in the same folder. |
| Move a note to a different folder. Can also rename as part of the move. Creates destination folders if needed. |
| Delete a folder. Use |
All paths are relative to the vault root, e.g. "Projects/App/roadmap.md".
License
MIT
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
- AlicenseNot gradedqualityDmaintenanceProvides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.36MIT
- FlicenseAqualityDmaintenanceAn MCP server that enables AI assistants to interact with Obsidian vaults by providing tools for note management, full-text search, and link analysis. It supports comprehensive file operations, frontmatter manipulation, and daily note creation while ensuring security through path validation.191
- FlicenseNot gradedqualityDmaintenanceA local MCP server that wraps the Obsidian CLI to give AI assistants direct access to read, edit, and manage notes within an Obsidian vault. It enables advanced operations such as frontmatter property management, context-aware searching, and the execution of internal Obsidian commands.2
- AlicenseBqualityDmaintenanceAn MCP server that enables AI assistants to access and manage your local Obsidian vault through a standardized protocol.142,4721Apache 2.0
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/DavidBurckhardt/obsidian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server