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.
Описание
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
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 itsinstallsubcommand.
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. Runnpx -y obsidian-mcp-rs install claude-code ~/Documents/Obsidian/MyVault(usecursor,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 remind me that updating means re-running this same command, notnpm update. 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.jsonserver via the/mcppanel — 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
npx obsidian-mcp-rs@latest install # same command you used the first time
That replaces the installed binary in place. The path in your configs never changes, so nothing needs re-pointing and no config goes stale. (One exception, and it catches everyone who installed early: a config written before 0.7.0 does not hold that path yet, and install will not overwrite it on its own — see below.)
Two things worth knowing:
npm updatealone does not update the installed server. The copy your client runs only changes wheninstallruns.npx obsidian-mcp-rs listprints the installed version next to this package's, and says so when they drift apart.- On Windows, quit your AI clients first. 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.
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, so it does not accumulate — on macOS and Linux. On Windows that backstop is not yet in place.
- 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 graph —
wikilinksanswers backlinks, outgoing, broken links and orphans - Section-scoped edits — point
edit-noteat one heading or one^block-idand only those bytes are rewritten; the rest of the note is passed through untouched - Frontmatter access —
frontmatterreads and writes any YAML key, not justtags, and touches only the key you named - Multi-vault support — pass multiple vault paths as arguments
- Recoverable deletes —
delete-notemoves 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 notes —
periodicreads/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 orientation —
vault-infoanswers what tags exist, what changed recently, and how big the vault is - Read-only mode —
--no-editremoves every write tool fromtools/listentirely, 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:
installplaces 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 orcargo installto 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--httpserves several clients from one long-lived server. Validates theOriginheader, as the MCP spec requires of local servers. stdio remains the default. npxcompatible — 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, aTODO(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 withtags: [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 installwrites 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.
commandis the pathinstallreports, e.g.~/Library/Application Support/obsidian-mcp-rs/bin/obsidian-mcp-rson macOS (spelled out in full — configs do not expand~). Do not putnpxhere: 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:
frontmatter—getworks;setandremoveare refusedperiodic—getandlistwork;createis 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
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
- Run
npx obsidian-mcp-rs logs - Copy the output (or attach the log file)
- 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
- Fork the repository
- Create a feature branch:
git checkout -b feat/my-feature - Implement with tests
- Ensure
cargo fmtandcargo clippypass - Submit a pull request
License
MIT — see LICENSE.
Установить Obsidian Mcp Rs в Claude Desktop, Claude Code, Cursor
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 -- npx -y obsidian-mcp-rsПошаговые гайды: как установить Obsidian Mcp Rs
FAQ
Obsidian Mcp Rs MCP бесплатный?
Да, Obsidian Mcp Rs MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Obsidian Mcp Rs?
Нет, Obsidian Mcp Rs работает без API-ключей и переменных окружения.
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.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
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-hzCompare Obsidian Mcp Rs with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
