Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Obsidian Mcp Rs

БесплатноПоддерживается

Rust MCP server for Obsidian vaults — read, write, search notes via Model Context Protocol. Works with Claude, Cursor, and any MCP client.

GitHubEmbed

Описание

Rust MCP server for Obsidian vaults — read, write, search notes via Model Context Protocol. Works with Claude, Cursor, and any MCP client.

README

obsidian-mcp-rs logo

obsidian-mcp-rs

Claude Ready Cursor Ready MCP Native Rust Powered npx Compatible



CI npm version npm downloads License: MIT Platforms Coverage



Rust-based MCP server that connects your Obsidian vault to Claude, Cursor, and any AI client — single binary, zero runtime dependencies.

English | Русский


[!WARNING] This MCP server has full read and write access to your Obsidian vault. It can create, edit, move, and delete notes without confirmation. Use at your own risk. Always keep backups of your vault before connecting it to an AI client.

To restrict the server to read-only access, pass --no-edit — see Read-only mode.

Setup

You need Node.js 22 or newer to run the installer — that is how it is distributed. Node is not needed to run the server: the installer places a single static binary and points your client straight at it, so nothing but that binary runs afterwards. If you would rather skip Node entirely, grab the binary for your platform from Releases or cargo install obsidian-mcp-rs, then run its install subcommand.

The fastest way: just ask your AI agent to install it. If you already work inside an agentic client (Claude Code, Cursor, Windsurf, …), you never touch a config file — paste one prompt and let the agent run the installer for you. Swap in your own vault path:

Install the obsidian-mcp-rs MCP server for this editor. My Obsidian vault is at ~/Documents/Obsidian/MyVault. Run npx -y obsidian-mcp-rs install claude-code ~/Documents/Obsidian/MyVault (use cursor, windsurf, vscode, claude, … for other clients). It copies the server to a fixed location and writes that path into my client config — so tell me where it landed, and tell me whether it said the server will keep itself up to date. Then tell me to restart the session and approve the server if the client asks.

Heads-up: clients read MCP config at session start, so the agent can write it but can't hot-load it. After it installs the server, restart the client — and in Claude Code approve a project-scoped .mcp.json server via the /mcp panel — before the 15 tools appear.

Prefer a CLI? (or not using an agent)

Not inside an agentic client — e.g. Claude Desktop, which can't run shell commands — or just prefer to do it yourself? The interactive wizard scans for installed AI clients, lets you pick where to install, and writes the config automatically:

npx obsidian-mcp-rs install

Or install directly without interaction:

# Claude Desktop
npx obsidian-mcp-rs install claude ~/Documents/Obsidian/MyVault

# Claude Code – project-local (.mcp.json in current directory)
npx obsidian-mcp-rs install claude-code ~/vault

# Claude Code – global (~/.claude.json)
npx obsidian-mcp-rs install claude-code --global ~/vault

# Cursor – project-local (.cursor/mcp.json in current directory)
npx obsidian-mcp-rs install cursor ~/vault

# Cursor – global (~/.cursor/mcp.json)
npx obsidian-mcp-rs install cursor --global ~/vault

# OpenClaw
npx obsidian-mcp-rs install openclaw ~/vault

# Multiple vaults
npx obsidian-mcp-rs install claude ~/vault1 ~/vault2

Other management commands:

npx obsidian-mcp-rs list       # installation status across all clients, and which server version is installed
npx obsidian-mcp-rs uninstall  # interactive removal wizard
npx obsidian-mcp-rs uninstall claude --dry-run  # preview changes without writing

What install actually writes

It copies the server binary to a fixed per-user location and writes that absolute path into your client config:

Platform Installed server
macOS ~/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs
Linux ~/.local/share/obsidian-mcp-rs/bin/obsidian-mcp-rs
Windows %LOCALAPPDATA%\obsidian-mcp-rs\bin\obsidian-mcp-rs.exe

Your config therefore runs one process — the server itself, as a direct child of your AI client. It does not run npx, which would start three (npm → a Node launcher → the server) and leave the extra two behind whenever a client terminates only the first. It also means the server can tell when your client goes away, and exit with it instead of lingering with write access to your vault.

npx is still how you run the installer, and it is still the quickest way to try the server. It is simply no longer what ends up written into a config permanently.

Updating

The server keeps itself up to date, from 0.8.0 onwards. Once install has placed it, it checks for a new release at most once a day, in the background, and replaces itself when it finds one.

Auto-update ships in 0.8.0, so it cannot bring you 0.8.0 — an older copy does not know how. Run npx obsidian-mcp-rs@latest install once and it takes over from there. npx obsidian-mcp-rs list says so if your copy predates it. Nothing is asked of you, and nothing is interrupted — the new version is what your client starts next time it launches.

Four things it deliberately will not do:

  • It waits 48 hours after a release ships. If a release turns out to be broken, that window is when it gets withdrawn — so the bad one never reaches you.
  • It only ever replaces the copy install placed. A binary from cargo install, from a distribution package, or the one npx caches belongs to whatever put it there. Those never update themselves.
  • It asks the network at most once a day per machine, no matter how many times your client restarts the server — and a failed check is silent, so an offline or firewalled machine is never slowed down or broken by it.
  • It verifies what it downloads against the checksum published with the release, and runs the new binary once before installing it. Anything that does not answer with the version it claims is thrown away.

Turning it off goes through an install, because that is where the answer is recorded:

npx obsidian-mcp-rs@latest install claude ~/vault --no-auto-update

Name the client and the vault. The bare install --no-auto-update starts the interactive wizard, and the wizard only records your answer once you have picked a client — so backing out of it changes nothing. The wizard asks instead of assuming and offers your current choice as the default. The answer is remembered; the same command with --auto-update takes it back. An install that says nothing about auto-update changes nothing about it, so configuring a second client will not switch it back on.

To take a release now rather than wait for the check, run the installed copyupdate acts on the binary that is running it, and the copy in npm's cache is not the one in your configs. npx obsidian-mcp-rs list prints the path:

# macOS; see the table above for Linux and Windows
"$HOME/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs" update           # take the latest release
"$HOME/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs" update --check   # just say what is available
"$HOME/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs" update --force   # take it even inside the 48-hour hold

What the check sends. One GET to api.github.com per day, carrying what any HTTP request carries — your IP address — and a User-Agent of obsidian-mcp-rs/<version>. An actual update then downloads the binary from github.com, which redirects to githubusercontent.com. Nothing about your vaults, your notes, your client or your machine is sent, and nothing identifies you across days beyond what GitHub can infer from an address. It honours HTTP_PROXY / HTTPS_PROXY / NO_PROXY. If that is one request too many, --no-auto-update stops it entirely.

To go back to an older release, install it with auto-update off — npx [email protected] install claude ~/vault --no-auto-update. Without that flag the daily check follows releases/latest in both directions and puts the newer one back within a day, which is deliberate: withdrawing a bad release means dropping it out of releases/latest, and everyone who already took it has to be able to come back down. The path in your configs never changes, so nothing needs re-pointing either way. (One exception, and it catches everyone who installed early: a config written before 0.7.0 does not hold that path yet, so none of this reaches it — see below.)

npx obsidian-mcp-rs list prints where the server is, which version it is, and whether auto-update is on.

On Windows, quit your AI clients before running install. Windows refuses to overwrite a running executable; if a client still has the server open the installer will say so and ask you to close it. (update is not affected — it renames rather than overwrites.)

uninstall removes the binary too, once no client config still points at it.

Upgrading from a config written before 0.7.0

Everything above describes a config install wrote for you. If yours predates 0.7.0 it holds npx -y obsidian-mcp-rs, or a resolved path into npm's _npx cache, and re-running install will not replace it.

The installer refuses to overwrite an entry that differs from the one it would write — that entry may be something you tuned by hand, and silently discarding it is worse than doing nothing. So it reports the entry and moves on:

! Claude Code – global (~/.claude.json)  already installed in ~/.claude.json, but with different settings than you asked for
    nothing was changed — re-run with --force to replace that entry

That line sits between the clients that were written and the "restart your client" note at the end, which is an easy place to miss it. If your client still starts npx after an update, this is why — and none of the process-lifecycle fixes above are in effect for it.

To migrate, add --force:

npx obsidian-mcp-rs@latest install --force

Every backend copies the previous file to <config>.bak before writing, so this is reversible.

list names the ones that need it:

! Claude Desktop                          outdated   …/claude_desktop_config.json — runs `obsidian-vault-mcp`, not the installed server; re-run `install --force`
! Claude Code – global (~/.claude.json)   outdated   ~/.claude.json — runs `npx`, not the installed server; re-run `install --force`
✓ Codex CLI – global                      installed  ~/.codex/config.toml

outdated means the entry is there and does not launch this server. Earlier versions reported every one of these as installed, because the check asked only whether an obsidian key existed — which is also why a config naming a binary that had since been deleted went unnoticed.

Known issues that are not ours

  • Duplicate server processes on Claude Desktop. Claude Desktop can spawn more than one copy of the same MCP server per launch (claude-code#36616). Nothing this server does causes it, and nothing it does can prevent it. It is safe: concurrent servers on one vault are serialised so they cannot lose each other's edits, and any that outlive their client exit on their own.
  • Orphaned MCP processes generally. Several clients fail to terminate stdio MCP servers on unclean exit (#22612, #1935, #40667). This server watches the process that started it and exits when it goes, on all three platforms: a getppid poll on macOS and Linux, a wait on the parent's process handle on Windows.
  • Two devices, one synced vault. Writes are serialised per machine. Two computers editing the same cloud-synced vault at once is a sync conflict, and it belongs to iCloud / Obsidian Sync rather than to this server.

Features

  • 15 tools covering note CRUD, search, links, frontmatter, daily notes, directory management, and tag operations
  • Ranked search — BM25 relevance with field boosts (a term in the title outranks the same term buried in a paragraph), returned best-first and capped so a common word can't flood the model's context
  • Link-aware moves — renaming a note rewrites every [[wikilink]] and markdown link pointing at it, so moving a note never silently orphans references
  • Link graphwikilinks answers backlinks, outgoing, broken links and orphans
  • Section-scoped edits — point edit-note at one heading or one ^block-id and only those bytes are rewritten; the rest of the note is passed through untouched
  • Frontmatter accessfrontmatter reads and writes any YAML key, not just tags, and touches only the key you named
  • Multi-vault support — pass multiple vault paths as arguments
  • Recoverable deletesdelete-note moves the note to the vault's .trash/ (as Obsidian does) rather than erasing it; a trashed note disappears from search and the link graph, but the user can still get it back
  • Daily notesperiodic reads/creates daily…yearly notes using the vault's own Obsidian settings (name format, folder, template), so it writes to the note you actually keep
  • Vault orientationvault-info answers what tags exist, what changed recently, and how big the vault is
  • Read-only mode--no-edit removes every write tool from tools/list entirely, so a read-only server describes itself as one
  • Zero runtime dependencies — the server is a single static binary, and it is what your client runs: install places it and points the config straight at it, so no Node process sits in between. Node.js 22+ is needed only to run the installer; grab a binary from Releases or cargo install to skip it entirely.
  • Cross-platform — macOS (ARM64 + x64), Linux (x64 + ARM64 + musl), Windows (x64 + ARM64)
  • Tag search via tag: prefix in queries
  • YAML frontmatter tag management
  • Streamable HTTP (optional) — cargo install obsidian-mcp-rs --features http, then --http serves several clients from one long-lived server. Validates the Origin header, as the MCP spec requires of local servers. stdio remains the default.
  • npx compatible — try it or install it in one command, with nothing to download first

Search

search-vault ranks hits with BM25, the same scoring family a full-text engine uses — but computed straight from the parallel vault walk, so there is no index to build, no watcher to keep in sync, and nothing to go stale when you edit a note in Obsidian.

Terms are weighted by where they occur: filename ×5, tags ×4, headings ×3, frontmatter ×2, body ×1. Rare terms count for more than common ones, so a query like the kafka ranks the note about Kafka above the note that merely says "the" a lot.

Results are paged (limit, default 20; offset) and each file quotes at most maxMatchesPerFile lines (default 3). Every response carries total and truncated, so the model can see that more matches exist without you paying for them in context.

Ranking answers "which notes are about this". Two questions it can't answer have their own arguments:

  • regex: true — match a shape rather than words: a phone number, a TODO(name), a URL. Hits are then ranked by how many lines matched, since relevance means nothing for a pattern.
  • frontmatter: {"status": "active"} — keep only notes carrying those fields. A list field matches when it contains the value, so {"tags": "work"} finds a note with tags: [work, urgent]. Combine it with a query, or use it alone with an empty query as a pure metadata lookup ("every active note in this vault").

Both are computed inside the walk that already reads every note, so neither costs an extra pass.

Performance

Vault-wide operations (search-vault, rename-tag) walk the vault with the ignore crate and process files in parallel via rayon. Measured with the criterion suite in benches/ on a synthetic vault, Apple Silicon (10 logical cores); "serial" is the same code pinned to one thread (RAYON_NUM_THREADS=1):

Operation Serial (1 thread) Parallel Speedup
Ranked search (2000 notes) 52.8 ms 26.2 ms ~2.0×
Tag search (2000 notes) 45.6 ms 24.4 ms ~1.9×
Tag rename (500 notes) 84.3 ms 60.0 ms ~1.4×

Single-note operations (read-note, create-note, edit-note, …) touch one file and are unaffected. Numbers vary with core count and disk; reproduce locally with cargo bench.

Configuration

Tip: npx obsidian-mcp-rs install writes these configs automatically, including the absolute path below — you do not have to work it out yourself. The sections below are for manual setup or reference.

command is the path install reports, e.g. ~/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs on macOS (spelled out in full — configs do not expand ~). Do not put npx here: it starts three processes where one is needed, leaves two of them behind when a client shuts the server down, and hides your client's exit from the server so it cannot clean up after itself.

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "obsidian": {
      "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
      "args": ["/path/to/your/vault"]
    }
  }
}

Multiple vaults

{
  "mcpServers": {
    "obsidian": {
      "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
      "args": [
        "/path/to/vault1",
        "/path/to/vault2"
      ]
    }
  }
}

Claude Code (.mcp.json / ~/.claude.json)

Claude Code's config carries an explicit "type": "stdio" (Claude Desktop, above, omits it):

{
  "mcpServers": {
    "obsidian": {
      "type": "stdio",
      "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
      "args": ["~/Documents/Obsidian/MyVault"]
    }
  }
}

Cursor

Add the server to Cursor's MCP settings via Settings → MCP → Add Server, or edit ~/.cursor/mcp.json directly:

{
  "mcpServers": {
    "obsidian": {
      "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
      "args": ["/path/to/your/vault"]
    }
  }
}

Once added, Cursor's AI will have access to all 15 vault tools. You can verify with the MCP panel in Settings.

OpenClaw (~/.openclaw/openclaw.json)

{
  "mcp": {
    "servers": {
      "obsidian": {
        "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
        "args": ["/path/to/your/vault"],
        "transport": "stdio"
      }
    }
  }
}

Read-only mode (--no-edit)

Pass --no-edit to start the server in read-only mode. The eight write-only tools are removed from tools/list entirely — a read-only server describes itself as one, rather than advertising tools it will only refuse — and they are unreachable via tools/call as well.

Removed under --no-edit (the write-only tools): create-note, edit-note, delete-note, move-note, create-directory, add-tags, remove-tags, rename-tag

Still listed, because they read as well as write — these are gated per action, so the reads work and the writes are refused:

  • frontmatterget works; set and remove are refused
  • periodicget and list work; create is refused

Pure reads, always available: read-note, search-vault, wikilinks, vault-info, list-available-vaults

Manual config with --no-edit

{
  "mcpServers": {
    "obsidian": {
      "command": "/Users/you/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rs",
      "args": ["--no-edit", "/path/to/your/vault"]
    }
  }
}

Via install wizard

npx obsidian-mcp-rs install claude --no-edit ~/Documents/Obsidian/MyVault

Platform Support

Platform Architecture Target triple
macOS ARM64 (Apple Silicon) aarch64-apple-darwin
macOS x64 (Intel) x86_64-apple-darwin
Linux x64 (glibc) x86_64-unknown-linux-gnu
Linux ARM64 (glibc) aarch64-unknown-linux-gnu
Linux x64 (musl / Alpine) x86_64-unknown-linux-musl
Windows x64 x86_64-pc-windows-msvc
Windows ARM64 aarch64-pc-windows-msvc

Tool Reference

read-note

Read the content of an existing note.

Parameter Type Required Description
vault string Vault name
filename string Note filename (.md optional)
folder string Subfolder path within vault
view string content (default) or outline — headings, block refs and frontmatter keys
offset number First line to return, 1-based (default 1)
limit number Most lines to return (default 400)

Reads are capped so that one long note cannot consume the model's whole context. Past the limit the note is cut off with a marker saying which lines you got and what offset to pass for the rest; a note that fits comes back untouched. offset speaks the same line numbers view: "outline" prints, so one can be pasted straight into the other.

create-note

Create a new note with Markdown content.

Parameter Type Required Description
vault string Vault name
filename string Note filename
content string Markdown content
folder string Subfolder path (created automatically)

edit-note

Edit an existing note.

Parameter Type Required Description
vault string Vault name
filename string Note filename
operation string append, prepend, replace, find_and_replace
content string Content to apply
folder string Subfolder path
search string Search text (required for find_and_replace)

delete-note

Delete a note from the vault.

Parameter Type Required Description
vault string Vault name
filename string Note filename
folder string Subfolder path

move-note

Move or rename a note within the vault.

Parameter Type Required Description
vault string Vault name
filename string Source filename
folder string Source folder
newFolder string Destination folder. Omit to keep the note where it is — that is how you rename in place. Pass "" to move it to the vault root.
newFilename string New filename (same if omitted)

At least one of newFolder / newFilename is required — a move that carries neither is refused rather than guessed at. Inbound [[wikilinks]] are rewritten so they follow the note.

create-directory

Create a new directory in the vault.

Parameter Type Required Description
vault string Vault name
path string Directory path relative to vault root
recursive boolean Create parent dirs (default: true)

search-vault

Search notes by content, filename, or tag. Results are BM25-ranked, best-first, and paged.

Parameter Type Required Description
vault string Vault name
query string Search term. tag:name searches a tag. May be empty when filtering by frontmatter alone
path string Limit search to subfolder
caseSensitive boolean Default: false
searchType string content (default), filename, both
regex boolean Read query as a regular expression (default false)
frontmatter object Only notes carrying these fields, e.g. {"status": "active"}. A list field matches when it contains the value
limit number Files to return (default 20)
offset number Skip this many files (default 0)
maxMatchesPerFile number Lines quoted per file (default 3)

Each hit carries a path — pass it straight back as any note tool's filename.

wikilinks

The vault's link graph, in one parallel pass.

Parameter Type Required Description
vault string Vault name
query string backlinks, outgoing, broken, or orphans
filename string The note to ask about — required by backlinks and outgoing
folder string Subfolder containing the note
limit number Default 50 — broken and orphans run to thousands on a neglected vault
offset number Skip this many (default 0)

Links inside code fences are ignored: a [[link]] in a code sample is documentation, not a reference.

frontmatter

Read or write any YAML frontmatter key — not just tags. Writes are line surgery on the one key named, so the rest of the block (comments, key order, quoting) survives byte for byte.

Parameter Type Required Description
vault string Vault name
filename string Note path
action string get, set, or remove
key string Which field. Omit with get to return the whole block
value any What to write — string, number, boolean, list or object (set only)
folder string Subfolder containing the note

Under --no-edit this is gated per action: get works, set/remove are refused.

vault-info

What's actually in this vault — the questions you ask before you know what to search for.

Parameter Type Required Description
vault string Vault name
query string tags (every tag + how many notes carry it, commonest first), recent (newest first), or stats
limit number Cap the list (default 20)

periodic

Today's daily note, and its weekly/monthly/quarterly/yearly siblings — read from Obsidian's own settings (the Periodic Notes plugin's data.json, then core's daily-notes.json, then Obsidian's defaults), so it lands where Obsidian would rather than creating a stray note.

Parameter Type Required Description
vault string Vault name
period string daily, weekly, monthly, quarterly, yearly
action string get, create (idempotent), or list
date string YYYY-MM-DD — defaults to today
content string Text for a note create brings into existence; without it, the configured template is used
limit number How many notes list walks back (default 10)

add-tags

Add tags to notes in frontmatter and/or content.

Parameter Type Required Description
vault string Vault name
files string[] Vault-relative note paths. All must exist — if any doesn't, nothing is changed
tags string[] Tags to add
location string frontmatter, content, or both (default). Note that both puts the tag in the note twice
normalize boolean Normalize tag format (default: true)
position string start or end (default) — where an inline tag goes

remove-tags

Remove tags from notes.

Parameter Type Required Description
vault string Vault name
files string[] Note filenames
tags string[] Tags to remove

rename-tag

Rename a tag across all notes in the vault.

Parameter Type Required Description
vault string Vault name
oldTag string Current tag name
newTag string New tag name

list-available-vaults

List all vaults configured for this server. Takes no parameters.

Development

Prerequisites

  • Rust (stable; MSRV 1.88)
  • Node.js 22+ (for npm wrapper)

Build from source

git clone https://github.com/MrRefactoring/obsidian-mcp-rs.git
cd obsidian-mcp-rs

# Build Rust binary
cargo build --release

# Build TypeScript wrapper
cd npm/obsidian-mcp-rs
npm install
npm run build

# Run directly
./target/release/obsidian-mcp-rs /path/to/your/vault

Testing

cargo test               # all tests (lib + integration)
cargo test --lib         # library unit tests only

Benchmarks

cargo bench                          # run the criterion suite in benches/
RAYON_NUM_THREADS=1 cargo bench      # single-threaded baseline for comparison
cargo bench --no-run                 # compile only (what CI runs)

Cross-compilation

Linux cross-compilation requires cross:

cargo install cross --git https://github.com/cross-rs/cross

cross build --release --target aarch64-unknown-linux-gnu
cross build --release --target x86_64-unknown-linux-musl

Environment variables

Variable Description
RUST_LOG Log level: error, warn (default), info, debug, trace

Logs are written to stderr — stdout is reserved for MCP JSON-RPC.

Troubleshooting

When the server runs as a background MCP process, stderr is captured by the client and may not be visible. obsidian-mcp-rs therefore writes DEBUG logs to a file automatically whenever it starts.

Log file location

Platform Default path
macOS ~/Library/Logs/obsidian-mcp-rs/obsidian-mcp-rs.log
Linux ~/.local/share/obsidian-mcp-rs/obsidian-mcp-rs.log
Windows %LOCALAPPDATA%\obsidian-mcp-rs\obsidian-mcp-rs.log

View logs and get a bug-report link

npx obsidian-mcp-rs logs

# If you started the server with --log-file, point `logs` at the same path,
# or it will show you the default log while yours fills up elsewhere.
npx obsidian-mcp-rs logs --log-file /tmp/mcp-debug.log

Prints the log file path, the last 100 lines, and a link to open a GitHub issue.

Verbose output to stderr

Useful when running the server manually in a terminal:

obsidian-mcp-rs --verbose /path/to/vault
# equivalent:
RUST_LOG=debug obsidian-mcp-rs /path/to/vault

Custom log file

# Write to a specific path:
obsidian-mcp-rs --log-file /tmp/mcp-debug.log /path/to/vault

# Disable file logging entirely:
obsidian-mcp-rs --log-file - /path/to/vault

Reporting a bug

  1. Run npx obsidian-mcp-rs logs
  2. Copy the output (or attach the log file)
  3. Open an issue: https://github.com/MrRefactoring/obsidian-mcp-rs/issues/new

Architecture

npx obsidian-mcp-rs /vault/path
          │
          ▼
  npm/obsidian-mcp-rs/bin/bin.js   ← TypeScript platform resolver
          │   detects OS + arch
          │   resolves @obsidian-mcp-rs/<platform>
          ▼
  obsidian-mcp-rs (Rust binary)   ← MCP server, stdio transport
          │
          ├── clap → CLI args parsing
          ├── VaultManager → filesystem operations
          ├── ObsidianHandler → 15 MCP tool implementations
          └── rmcp → JSON-RPC / MCP protocol

Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feat/my-feature
  3. Implement with tests
  4. Ensure cargo fmt and cargo clippy pass
  5. Submit a pull request

License

MIT — see LICENSE.

from github.com/MrRefactoring/obsidian-mcp-rs

Установить Obsidian Mcp Rs в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install obsidian-mcp-rs

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add obsidian-mcp-rs --env RAYON_NUM_THREADS="" --env RUST_LOG="" -- npx -y obsidian-mcp-rs

Пошаговые гайды: как установить Obsidian Mcp Rs

FAQ

Obsidian Mcp Rs MCP бесплатный?

Да, Obsidian Mcp Rs MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Obsidian Mcp Rs?

Да, требуются переменные окружения: RAYON_NUM_THREADS, RUST_LOG. Unyly подставит их в конфиг при установке.

Obsidian Mcp Rs — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Obsidian Mcp Rs в Claude Desktop, Claude Code или Cursor?

Открой Obsidian Mcp Rs на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Изменения

Версии и запрашиваемые доступы со временем.

  • Новая версия опубликована
  • Новая версия опубликована
  • Новая версия опубликована
  • Новая версия опубликована
  • Новая версия опубликована

Похожие MCP

Fetch

Web content fetching and conversion for efficient LLM usage.

автор: Community

Roblox Studio

Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce

paralovавтор: paralov

Opencode Omniroute Plugin

OpenCode plugin for the OmniRoute AI Gateway. Drives dynamic model discovery, /connect auth flow, and multi-instance OmniRoute providers via the official @openc

GitHub Actionsавтор: GitHub Actions

AWS KB Retrieval

Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.

modelcontextprotocolавтор: modelcontextprotocol

Spring AI MCP Server

Provides auto-configuration for setting up an MCP server in Spring Boot applications.

автор: Community

llm-analysis-assistant

A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also

xuzexin-hzавтор: xuzexin-hz

MCP-Agent

A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)

lastmile-aiавтор: lastmile-ai

Spring AI MCP Client

Provides auto-configuration for MCP client functionality in Spring Boot applications.

автор: Community

mcp.natoma.ai

A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)

автор: Community

MCPHub

Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.

автор: Community

Compare Obsidian Mcp Rs with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai