Seekstone MCP Server
Servidor MCP de sistema de archivos directo para bóvedas de Obsidian. Lee archivos de la bóveda directamente desde el disco, sin necesidad de la aplicación Obsidian ni complementos. Cargas útiles 575 veces más pequeñas que las alternativas basadas en REST.
Documentación
The fastest Obsidian MCP server for Claude — search and edit your vault in milliseconds, without burning context.
Filesystem-direct · 16 tools · No plugins · No Obsidian app required · macOS · Linux · Windows
What is Seekstone?
Seekstone is an Obsidian MCP server — it gives Claude (and any Model Context Protocol client) direct read and write access to your Obsidian vault. No Obsidian app needs to be open, no plugins are required, and nothing leaves your machine.
It reads your vault directly from disk rather than routing through the Obsidian Local REST API plugin, and holds a warm full-text index in-process. The practical difference is twofold:
- Speed. Searches return in 1.4–3.2 ms warm — 25–160× faster than every other Obsidian MCP server we benchmarked, because there's no subprocess to spawn and no HTTP round-trip per query.
- Context. A search that returns ~1.75 MB and ~459,000 tokens via the REST plugin returns ~3 KB and ~800 tokens via Seekstone — a ~575× reduction.
Claude can search and read your entire note library, in milliseconds, without burning most of its context window on a single tool call.
Two npm names, one server — published under both for discoverability:
| Package | Install command |
|---|---|
obsidian-mcp-seekstone | npx -y obsidian-mcp-seekstone |
seekstone | npx -y seekstone |
Why Seekstone? The numbers.
Most Obsidian MCP servers return full note content for every search hit. On a broad query that's megabytes of text your LLM has to process — most of it irrelevant, all of it burning context window.
Seekstone returns ~200-character ranked excerpts instead. We benchmarked Seekstone against 5 popular Obsidian MCP servers on a real vault (1,955 notes, 20 runs each):
Search latency — warm median (lower is better)
| Server | Architecture | Warm p50 | vs Seekstone |
|---|---|---|---|
| 🥇 Seekstone | in-process MiniSearch index | 1.4–3.2 ms | — |
| obsidian-mcp-server | REST API | 45–71 ms | ~25–32× slower |
| mcp-obsidian | REST API | 53–109 ms | ~35–50× slower |
| obsidian-mcp-pro | fs-direct subprocess | 100–107 ms | ~45× slower |
| mcpvault | fs-direct subprocess | 181–217 ms | ~130× slower |
| obsidian-mcp | fs-direct subprocess | 214–224 ms | ~160× slower |
The gap is architectural: every competitor spawns a subprocess or makes HTTP round-trips per query. Seekstone holds a warm MiniSearch index in-process — no IPC, no network.
Search payload — bytes returned per query (lower is better)
| Server | Range | vs Seekstone |
|---|---|---|
| 🥇 Seekstone | 3–5 KB | — |
| mcpvault | 3–4 KB | ~1× |
| obsidian-mcp-pro | 3–180 KB | up to 28× |
| obsidian-mcp-server | 81–135 KB | ~28× |
| obsidian-mcp | 1 KB–823 KB | up to 56× |
| mcp-obsidian | 509 KB–3.84 MB | up to 478× |
REST-proxy servers return full note content for every match. A single "deep work" query via mcp-obsidian returned 3.84 MB — over a million tokens. Seekstone returns the same query in 4 KB.
Seekstone is the only Obsidian MCP server with published, reproducible benchmarks: the harness and methodology are open source — run it against your own vault and verify every number here.
Install
Choose the method that suits you best.
Option 1 — One-click (Claude Desktop, no terminal needed)
- Download
seekstone.mcpbfrom GitHub Releases - Open it with Claude Desktop — double-click in Finder, or right-click → Open With → Claude Desktop
- Pick your Obsidian vault folder when prompted
You'll know it worked when seekstone appears in Claude's toolbar. No JSON editing, no terminal, no Node.js required.
Option 2 — Guided setup (recommended for CLI users)
Open Terminal (macOS: Cmd+Space, type "Terminal", press Enter) and run:
npx -y obsidian-mcp-seekstone init
You'll know it worked when Seekstone appears in Claude's toolbar under the plug icon.
Seekstone reads Obsidian's own vault registry to detect your vault, validates it, and either prints the config block to paste or patches Claude Desktop directly:
# Auto-detect vault, print config to paste
npx -y obsidian-mcp-seekstone init
# Auto-detect vault, patch Claude Desktop in place (with backup)
npx -y obsidian-mcp-seekstone init --write
# Specify vault explicitly if you have multiple
npx -y obsidian-mcp-seekstone init --vault "/path/to/vault"
# Auto-configure Claude Code in one step (auto-detects vault, runs claude mcp add)
npx -y obsidian-mcp-seekstone init --client code --write
# Or just print the Claude Code command without running it
npx -y obsidian-mcp-seekstone init --client code
Option 3 — Manual config (Claude Desktop)
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"seekstone": {
"command": "npx",
"args": ["-y", "obsidian-mcp-seekstone"],
"env": { "SEEKSTONE_VAULT": "/absolute/path/to/your/vault" }
}
}
}
Option 4 — Claude Code
Auto-detects your vault and configures Claude Code in one command:
npx -y obsidian-mcp-seekstone init --client code --write
Or manually, if you prefer to specify the vault path explicitly:
claude mcp add seekstone --env SEEKSTONE_VAULT=/absolute/path/to/your/vault -- npx -y obsidian-mcp-seekstone
After installing, restart the client. On startup Seekstone walks the vault, builds an in-memory full-text index (a few seconds for thousands of notes), and keeps it live as you edit. The 16 tools below are then available to Claude.
Requires Node.js ≥ 22 for the CLI options. The one-click .mcpb bundle has no external requirements.
What can Claude do with your vault?
Once Seekstone is connected, you can ask Claude things like:
- "Search my notes for everything about [topic] and give me a summary" — uses
search, returns ranked excerpts, not full files - "Find all notes tagged #project and list their titles" — uses
list_noteswith a tag filter - "Read just the 'Decisions' section of my [project] note" — uses
read_notewith a section selector, so only that slice enters context - "What links to my [topic] note, and what does it link out to?" — uses
get_backlinksandget_linksto walk your graph - "Append today's standup notes to my daily note" — uses
append_periodic_note, resolving the daily-note path from your vault config (Obsidian doesn't need to be open) - "Fix every occurrence of the old project name in this note" — uses
replace_in_note, with a dry-run preview before it writes - "Add a summary section to the bottom of [note]" — uses
append_note, never touches frontmatter - "Move all notes in /inbox to /archive/[year]" — uses
move_note - "Update the status field in this note's frontmatter to 'done'" — uses
patch_frontmatter, preserves key order and quote style - "Create a new meeting note for today with a standard template" — uses
create_note
Claude never sees your full vault at once — it searches and reads selectively, so even large vaults (10k+ notes) stay within context budget.
Tools
Read
| Tool | Description |
|---|---|
search | Full-text search. Returns ranked ~200-char excerpts, not full notes. Fuzzy, prefix, and phrase queries. |
read_note | Read the full content of a note by vault-relative path. Supports returning a single section, block, or line range. |
list_notes | List notes, optionally filtered by folder prefix or tag. |
list_tags | List all tags in the vault sorted by usage count (or alphabetically). |
outline_note | Return a note's heading and block structure without its full content — cheap navigation before a targeted read. |
get_backlinks | Find all notes that link to a given note. |
get_links | List all outgoing wikilinks and markdown links from a note. |
get_periodic_note | Read today's (or any date's) daily, weekly, monthly, quarterly, or yearly note — path resolved from your vault config, no Obsidian required. |
Write
| Tool | Description |
|---|---|
create_note | Create a note (optional frontmatter + body); parent directories are created automatically. |
delete_note | Permanently delete a note. Irreversible. |
move_note | Move or rename a note; destination directories are created automatically. |
append_note | Append text to a note body without touching frontmatter. |
patch_frontmatter | Set, update, or delete frontmatter keys without reordering existing keys or changing quote style. |
patch_note | Insert text immediately after a heading without touching frontmatter. |
replace_in_note | Replace the first occurrence of a word or phrase in the note body. |
append_periodic_note | Append to today's periodic note, creating it from a template if it doesn't yet exist. |
Fast and complete. Seekstone is the only Obsidian MCP server in our benchmark set to implement list_tags, outline_note, get_backlinks, and get_links — every other tested server supports only search, read, list, and write. Three more capabilities set it apart:
- Periodic notes, filesystem-direct.
get_periodic_noteandappend_periodic_noteresolve daily, weekly, monthly, quarterly, and yearly note paths by reading your vault's own config (.obsidian/daily-notes.jsonand the Periodic Notes plugin) — with Obsidian closed. Every REST-based server can only do this while the app is running. - Byte-identical frontmatter, guaranteed.
patch_frontmatteredits YAML in place — preserving key order, quote style, and comments — and write-safety is proven byte-for-byte by the test harness. No other server we surveyed makes this guarantee. - Zero coupling. No Obsidian app, no Local REST API plugin, no plugin-version drift. Just your files on disk.
Configuration
| Variable | Required | Description |
|---|---|---|
SEEKSTONE_VAULT | Yes | Absolute path to your Obsidian vault. |
SEEKSTONE_LOG_LEVEL | No | error | warn | info (default) | debug. |
SEEKSTONE_LOG_FILE | No | Absolute path; when set, JSON-line logs are appended here (size-rotated). |
SEEKSTONE_WATCH_POLL | No | Set to 1 to stat-poll for changes instead of native OS events — slower but reliable on network drives, WSL, and some containers. |
How it works
Seekstone walks the vault with fast-glob, parses each note's frontmatter (byte-aware, so writes can prove the frontmatter region is byte-identical pre- and post-write), and builds a MiniSearch full-text index in memory. Search returns short ranked excerpts rather than whole notes — that excerpt-not-document design is where the context-tax win comes from. A cross-platform file watcher (chokidar) keeps the index current as you edit in Obsidian.
Writes are conservative by design: append_note never touches frontmatter, and patch_frontmatter edits the YAML document in place rather than re-serializing it, preserving key order, quote style, and comments.
It's built to stay up. Seekstone is tested on macOS, Linux, and Windows in CI on every commit, its write tools are hardened against pathological (ReDoS) inputs, and a stray unhandled rejection is logged rather than crashed on — so your long-lived MCP session keeps its warm index instead of dropping out mid-conversation.
Security & privacy
Seekstone reads — and, via the write tools, modifies — files under SEEKSTONE_VAULT on your local disk. It makes no network calls and sends no telemetry. Logs are metadata-only by default (note contents only appear at debug level). Nothing is written outside the vault except an optional log file you configure.
Frequently asked questions
Does the Obsidian app need to be running? No. Seekstone reads the vault folder directly from disk. Obsidian can be open or closed.
Do I need the Local REST API plugin? No. Seekstone bypasses it entirely — that's the source of the 575× payload reduction. No plugins are required.
Which AI clients does it support? Any client that supports the Model Context Protocol (MCP) over stdio — Claude Desktop, Claude Code, Cursor, Windsurf, Continue, and others.
Is it safe to use on my vault?
Seekstone never modifies files except when you explicitly invoke one of its write tools (the eight in the table above — create_note, append_note, patch_note, patch_frontmatter, replace_in_note, move_note, delete_note, append_periodic_note). It makes no network requests. The vault path is sandboxed — no tool can read or write outside it.
Does it work on Windows? Yes. Seekstone is tested on macOS, Linux, and Windows in CI on every commit.
What Obsidian vault sizes does it handle? Seekstone has been profiled against vaults with thousands of notes. The in-memory index is small (a few MB for a typical vault) and starts in a few seconds.
How does seekstone init find my vault automatically?
It reads Obsidian's own vault registry (obsidian.json) — the same file Obsidian uses to track your known vaults. If you have one vault, it's selected automatically. If you have multiple, it lists them and asks you to pick with --vault.
What is the .mcpb file?
An MCP Bundle — a self-contained zip with the server and its manifest. To install: double-click in Finder (or right-click → Open With → Claude Desktop), pick your vault, and you're done. No terminal or Node.js required.
Contributing & development
Contributions welcome. See CONTRIBUTING.md for guidelines, or jump straight in:
npm install # install all workspace deps
npm test # run all tests
npm run lint # biome check
npm run build -w seekstone # tsup → dist/
npm run build:mcpb # build seekstone.mcpb bundle
npx vitest run packages/server/src/tools/search.test.ts # single test file
npx vitest run -t 'parses a typical frontmatter' # single test by name
npx tsc -p packages/server/tsconfig.json --noEmit # typecheck
Repository layout
| Package | Purpose |
|---|---|
packages/server | The published seekstone MCP server (16 tools, stdio, MiniSearch index, chokidar watcher). |
packages/core | Shared vault primitives — walk, frontmatter parser, link/tag extractor, percentiles. Bundled into the server build. |
packages/harness | Profiler + benchmark + write-safety harness (REST vs filesystem) that produced the payload numbers above. Dev-only; not published. |
The server has a real build (tsup → dist/) and is published to npm. The harness is run from source via tsx. Releases are automated — see docs/RELEASING.md.
The measurement harness
The harness exists to reproduce the benchmark numbers that motivated the filesystem-direct design. It needs the Local REST API plugin for the rest backend.
export SEEKSTONE_VAULT="/absolute/path/to/your/vault"
npx tsx packages/harness/src/cli.ts profile --vault "$SEEKSTONE_VAULT"
npx tsx packages/harness/src/cli.ts bench \
--queries packages/harness/queries/default.json \
--stats reports/vault-stats.json
npx tsx packages/harness/src/cli.ts safety --vault "$SEEKSTONE_VAULT"
Harness env vars: SEEKSTONE_REST_API_KEY (from the Local REST API plugin) and SEEKSTONE_REST_URL (defaults to https://127.0.0.1:27124).
Support
Seekstone is free and open source. If it saves you context (and money), you can buy me a coffee.
License
MIT © Shaq Mughal