obsidian-mcp-guard
Provides read/write file tools for Obsidian vaults with lint validation to prevent malformed markdown, including creating, updating, deleting, moving notes, and listing notes within configured vaults.
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-mcp-guardCreate a note in Claude vault titled 'Meeting Notes' with content about today's agenda."
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-guard
An MCP server for agent-safe Obsidian vault access. Provides read/write file tools with lint validation to prevent agents from writing malformed Obsidian markdown.
Why this exists
Most Obsidian MCP servers give agents direct write access with no markdown validation. Those that route through the Obsidian REST API gain some input sanitisation, but none validate content against Obsidian's markdown rendering rules before writing. obsidian-mcp-guard fills this gap: all writes are validated against Obsidian's markdown rules before they touch the vault, and if the content would render incorrectly, the write is rejected with a structured error explaining exactly which rule was violated. Writes can also be constrained to a single configurable vault path, giving agents a designated space to create and manage content on behalf of the user while preventing accidental or runaway writes to other vaults on the same filesystem. Directory traversal attacks are blocked at the path resolution layer, so a misconfigured, misbehaving, or prompt-injected agent cannot escape the write vault by constructing paths like Claude/../OtherVault/note.md
Features
Read/list/create/update/delete/move notes via
HOST_VAULT_PATHon the host filesystemLint validation on all writes using mdlint-obsidian — blocks writes that violate Obsidian markdown rules (unclosed wikilinks, raw HTML, standard-markdown links, etc.)
Write-vault isolation — writes are constrained to a single configurable vault; directory-traversal attacks are blocked on both read and write paths
Composable —
create_vault_server()returns aFastMCPinstance that can be mounted into a larger server viaimport_server()Pre-validation tool —
lint_notelets agents check content before committing a write
Installation
pip install obsidian-mcp-guardFor Claude Desktop users who don't want a manual install, uvx runs it directly with no setup:
uvx obsidian-mcp-guardFor local development:
python -m venv .venv
source .venv/bin/activate
pip install -e .Configuration
Environment variable | Default | Description |
| (required) | Absolute path to the directory containing your vaults as subdirectories |
|
| Name of the only vault where write operations are permitted |
Example layout expected under HOST_VAULT_PATH:
/path/to/your/vaults/
Claude/ ← write operations land here
Work/ ← readable but not writable
Personal/ ← readable but not writableUsage
As a standalone stdio server
# via the installed CLI entry point
HOST_VAULT_PATH=/path/to/your/vaults obsidian-mcp-guard
# or via python -m
HOST_VAULT_PATH=/path/to/your/vaults python -m obsidian_mcp_guardClaude Desktop / Cursor config
{
"mcpServers": {
"obsidian": {
"command": "uvx",
"args": ["obsidian-mcp-guard"],
"env": {
"HOST_VAULT_PATH": "/path/to/your/vaults",
"WRITE_VAULT": "Claude"
}
}
}
}Claude Code
claude mcp add obsidian -- uvx obsidian-mcp-guardPass environment variables with -e:
claude mcp add obsidian -e HOST_VAULT_PATH=/path/to/your/vaults -e WRITE_VAULT=Claude -- uvx obsidian-mcp-guardMounted into another FastMCP server
from contextlib import asynccontextmanager
from fastmcp import FastMCP
from obsidian_mcp_guard import create_vault_server
@asynccontextmanager
async def lifespan(app):
await app.import_server(create_vault_server(
vault_path="/path/to/your/vaults",
write_vault="Claude"
))
yield
mcp = FastMCP("my-agent", lifespan=lifespan)
@mcp.tool()
def search_notes(...):
...Tools
Tool | Description |
| Return full content of a note in |
| List note paths within a vault or subfolder |
| Create a note; blocked by lint errors |
| Overwrite or append to a note; blocked by lint errors |
| Move a note to |
| Move a note within the write vault; rewrites wikilinks in all vault files |
| Pre-validate content without writing; returns |
Development
make install # install package + test dependencies
make test # run tests with coverage (90% minimum)
make build # build source and wheel distributions
make clean # remove build artefacts and cache filesSee CONTRIBUTING.md for full guidelines.
Related projects
mdlint-obsidian — the lint engine used to validate markdown against Obsidian's rendering rules
This server cannot be installed
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
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/codeafix/obsidian-mcp-guard'
If you have feedback or need assistance with the MCP directory API, please join our Discord server