Obsidian Second Brain MCP
Provides tools for automating an Obsidian vault, enabling agents to create, read, update, organize, and search notes, manage tasks, work with daily notes, and run Obsidian commands, with audit logging for mutations.
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 Second Brain MCPList my open tasks and create a daily note with them"
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 Second Brain MCP
Local MCP server for Codex and Antigravity that automates an open Obsidian vault through Obsidian's official command-line interface. It uses MCP over STDIO, so no HTTP listener, API key, embeddings index, or cloud service is required. Obsidian remains the system of record; the server does not edit an iCloud vault directly.
Requirements
macOS with Obsidian 1.12.7 or newer.
Node.js 20 or newer (the installer uses the Node executable that launched it).
A built checkout of this project (
npm installthennpm run build).An open Obsidian vault.
Enable Obsidian's CLI before installing the MCP server:
Open Obsidian and choose Settings → General → Command line interface.
Enable the CLI and accept the macOS registration prompt.
Confirm that
command -v obsidianprints a path (usually/usr/local/bin/obsidian). If it is elsewhere, setOBSIDIAN_BINwhen starting the MCP server or before running the installer.
The server selects the most recently opened vault ID from
~/Library/Application Support/obsidian/obsidian.json. This means the vault
can stay in iCloud while commands still go through Obsidian. Set
OBSIDIAN_VAULT_ID to target a different registered vault.
Related MCP server: obsidian-local-mcp
Install and configure
From the project directory:
npm install
npm run build
node scripts/install.mjs --dry-run
node scripts/install.mjsThe installer verifies Node, dist/index.js, and the Obsidian CLI; discovers
the open vault ID; and merges an obsidian STDIO server into both client
configurations:
Codex:
~/.codex/config.tomlAntigravity:
~/.gemini/config/mcp_config.json
Existing files are backed up with a timestamped .bak.* suffix before a real
update. Existing settings and custom fields in the obsidian server entry are
preserved; the command, entrypoint arguments, detected vault/CLI environment,
and approval setting are refreshed. Codex receives
default_tools_approval_mode = "auto" inside the
[mcp_servers.obsidian] table so normal calls to this server do not require a
confirmation for every operation.
Use one of these flags when only one client should be changed:
node scripts/install.mjs --codex-only
node scripts/install.mjs --antigravity-only--dry-run performs prerequisite checks and prints the planned paths and
backups without creating directories, backups, or configuration files. A
missing Obsidian CLI is reported as a warning in dry-run mode, but blocks a
real install. The installer never reads or prints note contents.
After installation, restart Codex and Antigravity, or use each client's MCP
refresh/reload action. A running client does not automatically reload a changed
MCP configuration; /mcp can show the current session's server state, but a
full client restart may still be needed after the first install.
Tools
The server exposes ten tools. Read-only tools return structured data and do not write the audit log; mutations return concise before/after evidence and append one JSONL audit record.
Tool | Purpose |
| Counts and samples files, folders, tags, properties, orphans, dead ends, unresolved links, and incomplete tasks. |
| Native Obsidian search with query, folder, case-sensitive, context, and result-limit controls. |
| Reads content plus file metadata, outline, properties, outgoing links, and backlinks. Identify a note by |
| Creates by path/name, content or template, optional properties, open, and overwrite controls. |
| Appends or prepends content, sets/removes properties, and changes a task's status. |
| Moves, renames, or sends a note to Obsidian trash. It never permanently deletes. |
| Reads, opens, appends to, or prepends to the active daily note. |
| Lists tasks or completes/reopens/assigns a custom one-character task status. |
| Uses native graph and organization signals to rank three contextual second-brain workflows. |
| Runs an argument array for other Obsidian/plugin commands after safety checks. |
The server instructions encourage an MCP client to search before assuming a
note exists, inspect links/backlinks before proposing connections, use typed
tools for ordinary work, and call suggest_use_cases when the user wants
creative ideas grounded in their actual vault.
Creative workflows
The recommendation tool can surface workflows such as:
Forgotten-note resurfacing: rotate orphan notes into a daily review and connect the useful ones to active projects.
Bridge-note generator: find disconnected tag/link clusters and outline a synthesis note that gives them a shared concept.
Knowledge-gap radar: turn unresolved links and dead ends into a ranked research queue.
Weekly synthesis cockpit: combine recent notes and unfinished tasks into wins, open loops, decisions, and next actions.
Idea-collision studio: combine unrelated tag clusters into writing, experiment, or project concepts grounded in real notes.
Example prompts:
Find three overlooked connections in my vault and explain why they matter.
Turn today's loose notes into a connected synthesis note.
Show unfinished tasks and append the best next actions to today's daily note.
Suggest three creative second-brain workflows based on how my vault is structured.For changes that affect several notes, ask the client to search/read first, show the proposed targets, and then perform the writes. The server permits autonomous writes by design, so client-level approval settings remain an important user choice.
Configuration
The MCP process reads these environment variables at startup:
Variable | Default | Meaning |
|
| Absolute path or executable name for the Obsidian CLI. |
| Detected open vault ID | Registered Obsidian vault ID to pass on every command. |
|
| JSONL mutation audit path. |
|
| Per-command timeout; invalid/non-positive values use 30 seconds. |
The generated client entry uses the absolute Node executable, dist/index.js,
the resolved Obsidian CLI path, and the detected vault ID, so it is independent
of the shell's PATH. If the project moves or the default vault changes, rerun
the installer to refresh those absolute values.
Safety and audit behavior
All Obsidian arguments are passed as an array to
execFile; there is no shell interpolation.Permanent deletion, arbitrary
eval, and rawdev:*/developer-control commands are blocked, including throughrun_obsidian_command.organize_noteuses Obsidian's delete/trash command only.Every mutation records timestamp, tool, vault, affected targets, sanitized arguments, status, duration, and before/after metadata or content hashes.
Content/body/text arguments are represented only by length and SHA-256 in the audit log. Note contents are not copied to logs or printed by the installer.
The audit directory is created with mode 0700 and the JSONL file with mode
Development and tests
npm run check # TypeScript type-check without emitting
npm run build # Compile to dist/index.js
npm test # Unit and MCP contract tests
npm run test:smoke # Optional real-vault smoke test
node --check scripts/install.mjs
node scripts/install.mjs --dry-runThe real-vault smoke test is opt-in because it creates, updates, and trashes fixture notes. It should only be run with Obsidian open on the intended test vault. It exercises linked notes, search/read, properties, backlinks, tasks, trash, and audit entries, and must leave no fixture behind.
Troubleshooting
Obsidian CLI was not found — enable the CLI under Obsidian Settings →
General, accept the registration prompt, and verify command -v obsidian. Set
OBSIDIAN_BIN=/absolute/path/to/obsidian if registration used a non-standard
path.
Compiled entrypoint not found — run npm install and npm run build from
the project directory, then rerun the installer. The configured entrypoint is
the absolute dist/index.js path.
No vault is detected — open the desired vault in Obsidian, or set
OBSIDIAN_VAULT_ID to a vault ID from the vaults object in Obsidian's
obsidian.json registry.
Tools do not appear — restart the client after installation and inspect its
MCP page (/mcp in Codex). Check that the configured command and dist/index.js
still exist and that Node is version 20 or newer.
A command fails — run the same read-only command in a terminal (for
example, obsidian vault) and inspect the returned error. The server applies a
vault ID to every command; a stale ID can be corrected with
OBSIDIAN_VAULT_ID or by rerunning the installer after opening the desired
vault.
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
- Alicense-qualityDmaintenanceProvides 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
- Flicense-qualityDmaintenanceA 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
- AlicenseBqualityDmaintenanceLocal-first MCP server for Obsidian vaults with 66 tools for reading, writing, searching, and managing notes, tasks, graphs, and more. Works without Obsidian running and requires no plugins.66MIT
- Alicense-qualityAmaintenanceMCP server for Obsidian that exposes tools for reading/writing notes, managing frontmatter and tags, querying Tasks, semantic search, and interacting with Obsidian Bases, with shared local caching and support for various runtime modes.36Apache 2.0
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
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/theon199/obsidian-second-brain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server