Obsidian Readonly MCP
Provides tools for querying a running Obsidian vault, including search, read, backlinks, links, outline, tags, properties, and other read-only operations.
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 Readonly MCPsearch for 'agent harness memory' 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 Readonly MCP
Read-only MCP tools for querying a running Obsidian vault from Codex or another agentic runtime.
Why this exists
The Obsidian CLI is not just a filesystem reader; it is connected to your main Obsidian app. Commands such as backlinks, links, outline, and indexed search need to talk to the running Obsidian app. In agentic runtimes, the agent's filesystem sandbox can block or destabilize that app/IPC boundary. For example, running obsidian help inside an agent sandbox can cause the Obsidian app to crash.
Giving the whole agent unsandboxed shell access fixes the IPC problem, but it gives the agent too much permission. This MCP server is the narrower solution:
sandboxed agent
-> read-only MCP tool call
-> host-side MCP server
-> obsidian CLI
-> running Obsidian appThe agent can stay sandboxed. The host-side MCP server gets permission to reach Obsidian, but it exposes only a fixed allowlist of read-only Obsidian commands.
Related MCP server: obsidian-local-mcp
Safety model
This server:
exposes only read-only Obsidian operations
rejects unknown tools
validates vault-relative paths and rejects
..path traversalbuilds
obsidianargv directly without shell interpolationcaps output size
times out long calls
It does not expose:
note creation or editing
delete, move, rename, append, prepend
property mutation
plugin/theme install, enable, disable, reload, uninstall
obsidian commandobsidian evalapp reload/restart/open/tab/workspace mutation
browser/web/open actions
Feel free to modify it to add these features if you need them.
Tools
Core vault reads:
searchsearch_contextreaddaily_readdaily_pathbacklinkslinksoutlinealiasestagstagunresolvedpropertiesproperty_readhelp
Filesystem/index reads through Obsidian:
filefilesfolderfolderswordcountdeadendsorphansrecentsrandom_readvaultvaultsversion
Structured features:
basesbase_querybase_viewsbookmarkstaskstemplatestemplate_readsnippetssnippets_enabled
History/config metadata reads:
diffhistoryhistory_listhistory_readhotkeyhotkeyspluginspluginplugins_enabledthemethemestabsworkspaceworkspacescommands
Developer read-only inspection:
dev_consoledev_errorsdev_cssdev_dom
Install With uvx
You can run the MCP server directly from GitHub without cloning the repo:
[mcp_servers.obsidian_readonly]
command = "uvx"
args = [
"--from",
"git+https://github.com/eothL/obsidian-readonly-mcp",
"obsidian-readonly-mcp"
]
[mcp_servers.obsidian_readonly.env]
OBSIDIAN_READONLY_VAULT = "Your Vault Name"Use the Obsidian vault name, not the filesystem path. It should be the same value you would pass to obsidian vault="Your Vault Name" ....
If this package is later published to PyPI, the config can become:
[mcp_servers.obsidian_readonly]
command = "uvx"
args = ["obsidian-readonly-mcp"]
[mcp_servers.obsidian_readonly.env]
OBSIDIAN_READONLY_VAULT = "Your Vault Name"Restart Codex or start a new thread so the MCP server is discovered.
Install From A Local Clone
Clone this repo somewhere stable, then add the MCP server to your Codex config:
[mcp_servers.obsidian_readonly]
command = "python3"
args = ["/absolute/path/to/obsidian-readonly-mcp/src/obsidian_readonly_mcp.py"]
[mcp_servers.obsidian_readonly.env]
OBSIDIAN_READONLY_VAULT = "Your Vault Name"Restart Codex or start a new thread so the MCP server is discovered.
Codex Plugin
This repository also includes Codex plugin metadata:
.codex-plugin/plugin.json.mcp.jsonskills/obsidian-readonly-mcp/SKILL.md
The plugin bundles the MCP server and the companion skill so Codex can learn to prefer the read-only Obsidian tools for vault exploration. The plugin MCP config does not hard-code a vault name; set OBSIDIAN_READONLY_VAULT in your environment or pass the vault argument in tool calls.
Usage
Once loaded, tools are exposed as names such as:
mcp__obsidian_readonly__search
mcp__obsidian_readonly__read
mcp__obsidian_readonly__backlinks
mcp__obsidian_readonly__links
mcp__obsidian_readonly__outlineExample tool arguments:
{"query": "agent harness memory", "limit": 10}{"file": "Agent harness memory", "counts": true, "format": "json"}Local smoke test
With Obsidian open:
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05"}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
| python3 src/obsidian_readonly_mcp.pyEnd-to-end read:
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search","arguments":{"query":"agent harness","limit":3}}}' \
| python3 src/obsidian_readonly_mcp.pyCompanion Skill
This repo includes a Codex skill in skills/obsidian-readonly-mcp/. Install or copy that skill into your Codex skills directory if you want agents to automatically prefer these tools for Obsidian vault exploration.
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
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/eothL/obsidian-readonly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server