obsidian-mcp
Provides tools for interacting with an Obsidian vault, enabling reading, searching, linking, and writing notes.
Click on "Deploy 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-mcpsearch my notes for recent learning about AI"
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
A Model Context Protocol server that lets any MCP-compatible AI host (Cursor, Claude Desktop, Zed, etc.) read, search, link, and write notes inside a local Markdown / Obsidian vault.
What is this?
obsidian-mcp is an MCP server. MCP is an open
standard from Anthropic for connecting AI assistants to external tools and data
sources — think "USB-C for AI applications". Once this server is registered with
an MCP host you can ask the model questions like:
"What did I learn about MCP this week, and which of my notes link to it?"
…and the model will call this server's tools (search_notes, find_backlinks,
get_recent_notes, …) to answer using your actual notes.
Related MCP server: Obsidian MCP Server
Status
Phase | Scope | State |
0 | Repo skeleton, CI, sample vault, server stub with | shipped |
1 | Sandboxed pathing, parser, reader, tests | shipped |
2 | Search, listings, backlinks, tag index | planned |
3 | Resources (notes as | planned |
4 | Write tools ( | planned |
5 | Prompts ( | planned |
Architecture
┌────────────────┐ stdio JSON-RPC ┌────────────────────────┐
│ MCP host │ ───────────────────► │ obsidian-mcp server │
│ (Cursor / │ │ (this repo) │
│ Claude / │ │ │
│ Zed) │ │ tools / resources / │
└────────────────┘ │ prompts │
└───────────┬────────────┘
│
sandboxed ▼
┌────────────────────────┐
│ Local Markdown vault │
└────────────────────────┘Every caller-supplied path is funnelled through a single sandboxing function
(utils/pathing.py::safe_resolve) before any filesystem access, so the server
cannot be coerced into reading files outside the configured vault root.
Quickstart
1. Install
git clone https://github.com/darrenlopez/obsidian-mcp.git
cd obsidian-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"2. Try it against the bundled sample vault
OBSIDIAN_MCP_VAULT_PATH="$(pwd)/sample-vault" \
npx @modelcontextprotocol/inspector \
python -m obsidian_mcpThis launches Anthropic's official MCP Inspector
pointed at this server, so you can interactively call get_note and inspect
schemas without leaving your browser.
3. Register with Cursor
Add the following to your Cursor MCP config
(~/.cursor/mcp.json or the Cursor settings UI):
{
"mcpServers": {
"obsidian": {
"command": "python",
"args": ["-m", "obsidian_mcp"],
"env": {
"OBSIDIAN_MCP_VAULT_PATH": "/absolute/path/to/your/vault",
"OBSIDIAN_MCP_READ_ONLY": "false"
}
}
}
}4. Register with Claude Desktop
Add the same block to ~/Library/Application Support/Claude/claude_desktop_config.json
on macOS (or the platform equivalent).
Configuration
All configuration is via environment variables (prefix OBSIDIAN_MCP_).
Variable | Default | Purpose |
| (required) | Absolute path to the vault root. |
|
| When |
|
| Max note size (KiB) returned by read operations. |
|
| Include dotfiles and |
Tools (Phase 0 / 1)
Tool | Description |
| Read a single note, returning parsed frontmatter, tags, and outgoing wikilinks. |
The Phase 2+ tool surface (search_notes, list_notes, find_backlinks,
list_tags, get_recent_notes, …) is documented in the
architecture plan and tracked in STATUS.
Security
This server reads (and, in non-read-only mode, writes) files on your machine. Some choices that limit blast radius:
Sandboxed paths. Every path is resolved through
safe_resolve(vault_root, user_input), which rejects absolute paths,..segments, and symlink escapes before any filesystem touch.Read-only mode. Set
OBSIDIAN_MCP_READ_ONLY=trueand write tools are not registered at all.Size limits.
OBSIDIAN_MCP_MAX_FILE_KBcaps the bytes returned by read operations to prevent DoS via huge files.Hidden-file exclusion.
.obsidian/and dotfiles are skipped by default, so plugin secrets do not leak into model context.No network. The server makes no outbound network requests of its own.
No
shell=True, noeval. Anywhere.
Development
pip install -e ".[dev]"
ruff check .
ruff format --check .
mypy
pytestThe test suite includes adversarial path-traversal tests
(tests/test_pathing.py) — keep them green.
License
Available Tools
1 toolget_noteA
Read a single note from the vault.
Args:
path: Vault-relative POSIX path to a Markdown file
(e.g. Topics/MCP.md).
Returns: The parsed note including frontmatter, tags, and outgoing wikilinks.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| path | Yes | Vault-relative POSIX path, e.g. 'Topics/MCP.md'. |
| tags | No | Inline #tags plus frontmatter tags. |
| title | Yes | Display title (frontmatter > first H1 > filename stem). |
| content | Yes | Raw Markdown body, without frontmatter. |
| truncated | No | True if the file was larger than max_file_kb and content is truncated. |
| size_bytes | No | |
| frontmatter | No | |
| modified_at | No | |
| outgoing_links | No | Targets of [[wikilinks]]. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses input constraints (POSIX path, Markdown file) and output contents (frontmatter, tags, wikilinks). Does not cover error conditions, but this is acceptable for a simple read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: one sentence for purpose, then structured Args/Returns sections. Every sentence adds value with no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter, read-only tool with an output schema hinted, the description fully explains the parameter constraints and return fields, making it complete for correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must add meaning. It does so effectively by describing 'path' as a vault-relative POSIX path to a Markdown file with an example, far exceeding the minimal schema type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Read a single note from the vault.' using a specific verb and resource. No sibling tools exist, so distinction is not required.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: when you need to read a specific note. However, no explicit when-not-to-use or alternative tools are mentioned, which is acceptable given no siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v0.1.0- First observed
get_note
TDQS
Scored across 1 tool
Only one tool exists, so there is no possibility of confusion between tools. The tool's purpose is clear and distinct.
With a single tool, naming consistency is not a concern; the name follows a clear verb_noun pattern that matches common conventions.
A single tool for an Obsidian vault MCP is insufficient. Typical vault operations (list, create, update, delete) are missing, making the count too few for the apparent scope.
The server severely lacks coverage. Only reading a note is supported; essential operations like listing, creating, updating, and deleting notes are absent, making it incomplete for a note management domain.
Maintenance
Related MCP Connectors
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
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.37MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search, read, and append content to notes in an Obsidian vault via the MCP protocol.6,222 npmBSD Zero Clause
- AlicenseNot gradedqualityAmaintenanceBuilt-in MCP server that gives AI agents direct access to an Obsidian vault for reading, writing, searching notes, and executing commands.34 npm2,927MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to read and search your Obsidian vault through a local MCP server, keeping everything private and local.Apache 2.0