Obsidian CLI
БесплатноНе проверенWraps the official Obsidian CLI for note management, search, metadata, tasks, and templates in Obsidian vaults.
Описание
Wraps the official Obsidian CLI for note management, search, metadata, tasks, and templates in Obsidian vaults.
README
A Model Context Protocol (MCP) server that wraps the official Obsidian CLI, letting AI agents in VS Code (and any other MCP client) read, write, search, and manage notes inside an Obsidian vault.
Prerequisites
| Requirement | Minimum version |
|---|---|
| Node.js | 18 |
| Obsidian desktop app | 1.12 (with CLI enabled) |
| Obsidian Catalyst licence | Required for CLI access |
The Obsidian desktop app must be running when the MCP server is in use.
The obsidian binary must be available on your PATH.
Installation
git clone https://github.com/dickiedyce/obsidian-ts-mcp.git
cd obsidian-ts-mcp
npm install
npm run build
Configuration
VS Code (user-level MCP)
Add the following to your VS Code MCP configuration:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Code/User/mcp.json |
| Linux | ~/.config/Code/User/mcp.json |
| Windows | %APPDATA%\Code\User\mcp.json |
{
"servers": {
"obsidian": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/obsidian-ts-mcp/dist/server.js"],
"env": {
"OBSIDIAN_VAULT": "My Vault"
}
}
}
}
Claude Desktop
Add to claude_desktop_config.json
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS,
%APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["/absolute/path/to/obsidian-ts-mcp/dist/server.js"],
"env": {
"OBSIDIAN_VAULT": "My Vault"
}
}
}
}
Set OBSIDIAN_VAULT to the name of the vault you want to target. The name
must match exactly what Obsidian shows in the vault switcher.
Environment variables
| Variable | Description |
|---|---|
OBSIDIAN_VAULT |
Default vault name appended to every CLI call. |
OBSIDIAN_VAULT_PATH |
Absolute filesystem path to the vault root. Used by direct filesystem operations; if unset, the path is resolved via the CLI. |
Available tools
The server exposes 41 tools organised into eleven groups.
Core -- note management
| Tool | Description |
|---|---|
create_note |
Create a new note, optionally from a template. Supports a path parameter for exact placement in subdirectories. |
read_note |
Read the full markdown contents of a note. |
append_to_note |
Append content to the end of a note. |
prepend_to_note |
Prepend content after the frontmatter of a note. |
search_vault |
Full-text search with Obsidian query syntax. |
daily_note |
Get or create today's daily note. |
daily_append |
Append content to today's daily note. |
Discovery and context
| Tool | Description |
|---|---|
get_vault_info |
Vault name, path, file/folder counts, size. |
list_files |
List files, optionally filtered by folder or extension. |
get_tags |
List all tags with occurrence counts. |
get_backlinks |
Find notes that link to a given note. |
get_outline |
Heading structure of a note. |
Properties and metadata
| Tool | Description |
|---|---|
set_property |
Set a frontmatter property on a note. |
read_property |
Read a frontmatter property value. |
Tasks
| Tool | Description |
|---|---|
list_tasks |
List tasks, with filters for status, file, or daily note. |
toggle_task |
Toggle a task checkbox on or off. |
Daily notes (extended)
| Tool | Description |
|---|---|
daily_read |
Read the contents of today's daily note. |
daily_prepend |
Prepend content after the frontmatter of the daily note. |
Templates
| Tool | Description |
|---|---|
list_templates |
List all available templates in the vault. |
read_template |
Read the contents of a template, optionally resolved. |
Links
| Tool | Description |
|---|---|
get_links |
List all outgoing links from a note. |
Properties (extended)
| Tool | Description |
|---|---|
list_properties |
List all frontmatter properties used across the vault. |
remove_property |
Remove a frontmatter property from a note. |
Tags (extended)
| Tool | Description |
|---|---|
get_tag_info |
Get detailed info about a specific tag and its files. |
File management
| Tool | Description |
|---|---|
move_file |
Move or rename a file; Obsidian updates internal links. |
Bases
| Tool | Description |
|---|---|
query_base |
Query an Obsidian Base and return structured results. |
Project management
| Tool | Description |
|---|---|
project_create |
Create a new project with overview and backlog files. |
project_list |
List all projects in the vault. |
project_overview |
Read a project's overview metadata. |
project_context |
Load full project context: overview, backlog, recent sessions. |
project_summary |
Generate a summary of project activity over a date range. |
project_dashboard |
Cross-project dashboard with status, activity, and backlog counts. |
backlog_add |
Add an item to a project's backlog. |
backlog_read |
Read a project's backlog. |
backlog_open |
List open backlog items and backfill missing open-item IDs. |
backlog_done |
Mark a backlog item done by unique ID or text, with timestamp. |
backlog_done_bulk |
Mark multiple backlog items done in a single call. |
backlog_prioritise |
Move a backlog item (by ID or text) to a specific position. |
backlog_reorder |
Reorder multiple backlog items (by IDs or text) in one call. |
backlog_archive |
Sweep all done items into an ## Archive section. |
Backlog entries created by backlog_add include a stable [#<id>] marker.
Prefer matching by ID over substring text matching where possible -- IDs survive
edits to item text.
Project structure
src/41
cli.ts -- Low-level Obsidian CLI wrapper (exec, arg building, errors).
fs-ops.ts -- Direct filesystem operations (mkdir, read, write) for exact path control.
tools.ts -- MCP tool definitions (names, descriptions, JSON schemas).
handlers.ts -- Dispatches tool calls (39 tools) to CLI commands or filesystem ops.
server.ts -- MCP server entry-point (stdio transport, error handling).
validation.ts -- Input validation against tool schemas.
tests/
cli.test.ts -- Unit tests for argument building and error types.
fs-ops.test.ts -- Unit tests for filesystem operations.
runObsidian.test.ts -- Tests for CLI execution, timeouts, vault targeting.
handlers.test.ts -- Tests for all 37 tool handlers (CLI and fs-ops are mocked).
tools.test.ts -- Schema validation for every tool definition.
validation.test.ts -- Input validation tests (types, enums, required fields).
server.test.ts -- Server factory, error formatting, version checks.
Development
npm run dev # Watch-mode TypeScript compilation
npm test # Run the test suite once
npm run test:watch # Run tests in watch mode
npm run test:coverage # Run tests with coverage report
npm run build # One-shot compilation
npm run lint # Run ESLint
npm run format:check # Check Prettier formatting
npm start # Start the MCP server on stdio
How it works
- An MCP client (VS Code, Claude Desktop, etc.) launches the server over stdio.
- The client calls
tools/listand receives the 37 tool definitions fromsrc/tools.ts. - When the client invokes a tool,
src/server.tsroutes the call tohandleTool()insrc/handlers.ts. handleTool()validates input against the tool schema, then either usesbuildArgs()andrunObsidian()fromsrc/cli.tsto execute the correspondingobsidianCLI command, or uses direct filesystem operations fromsrc/fs-ops.tswhen exact path control is needed (e.g. creating notes in subdirectories, project management).- The CLI output is returned to the client as a text content block.
Testing
Tests use Vitest and mock the CLI layer so they never invoke the real Obsidian binary. Run:
npm test
Security considerations
- Full vault access. The server has read/write access to every note in the
targeted vault. Limit
OBSIDIAN_VAULTto vaults you are comfortable exposing to AI agents. - No authentication. The stdio transport has no built-in auth. Access control depends entirely on who can launch the server process.
- Input validation. All tool inputs are validated against their declared
schemas before execution. The server uses
execFile(notexec) to avoid shell injection, but note that file/path values are passed directly to the Obsidian CLI. - Environment inheritance. The child process inherits the parent's environment variables. Avoid storing secrets in env vars visible to the server process.
Troubleshooting
Symptom
: obsidian: command not found
Cause: CLI binary not on PATH
Fix: Ensure Obsidian 1.12+ is installed and the CLI is enabled in Settings > General
Symptom
: Command timed out after 15000ms
Cause: Obsidian desktop app not running
Fix: Start the Obsidian app before using the MCP server
Symptom
: vault not found
Cause: Vault name mismatch
Fix: Check that OBSIDIAN_VAULT matches the exact name in Obsidian’s vault switcher
Symptom
: Catalyst licence required
Cause: Missing licence
Fix: The Obsidian CLI requires a Catalyst licence — purchase one at obsidian.md
Symptom
: Server exits immediately
Cause: Node.js version too old
Fix: Ensure Node.js >= 18 (node --version)
Licence
Установка Obsidian CLI
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/dickiedyce/obsidian-ts-mcpFAQ
Obsidian CLI MCP бесплатный?
Да, Obsidian CLI MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Obsidian CLI?
Нет, Obsidian CLI работает без API-ключей и переменных окружения.
Obsidian CLI — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Obsidian CLI в Claude Desktop, Claude Code или Cursor?
Открой Obsidian CLI на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Obsidian CLI with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
