obsidian-mcp-secure
Provides tools to read, write, search, and manage notes in an Obsidian vault securely.
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-mcp-secureCreate a note called 'ideas' with content 'brainstorming session'."
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-mcp-secure
Secure Model Context Protocol server that turns your Obsidian vault into a reliable data source for any MCP-compatible AI client β built from scratch with OWASP Top 10 controls and full audit logging.
Listed on the official Anthropic MCP Registry as io.github.dewtech-technologies/obsidian-mcp-secure.
π§ Positioning β this is NOT a plugin for Obsidian
It's the opposite: it's a bridge that lets Claude Desktop (or any MCP client) read and write inside Obsidian safely. Your AI assistant stays where it lives; your vault becomes a structured, auditable datasource it can reach.
βββββββββββββββββββ MCP ββββββββββββββββββββββββ HTTP ββββββββββββββββββββββ FS βββββββββββββββ
β β stdio β β :27123 β β β β
β Claude Desktop β ββββββββΆ β obsidian-mcp-secure β ββββββββΆ β Local REST API β ββββββΆ β Vault .md β
β (AI client) β β (this package) β β (Obsidian plugin) β β β
βββββββββββββββββββ ββββββββββββββββββββββββ ββββββββββββββββββββββ βββββββββββββββRole in the pipeline | Component |
Where you talk | Claude Desktop (or any MCP client) |
Bridge / access control |
|
Data gateway inside Obsidian | Local REST API plugin (by Adam Coddington) |
Your knowledge |
|
One-liner: Claude is the brain, this MCP is the arm, Obsidian is the memory.
Why another Obsidian + AI integration?
There are plugins that put Claude inside Obsidian. This is the inverse, and it exists because:
Your assistant is Claude Desktop β that's where the general-purpose conversations happen. Your notes become one of many contexts Claude can reach, alongside web, GitHub, filesystems, etc.
Security is a first-class concern β deliberate attack surface, no shell access, path traversal blocked, inputs validated with Zod, every call audited.
Zero build, zero account β
npx obsidian-mcp-secureand done. Works on Windows, macOS, Linux the same way.Composability β combine this MCP with fetch, filesystem, git, GitHub, etc., and Claude can cross-reference your vault with external sources in a single conversation.
Related MCP server: Another bloated Obsidian MCP Server
π οΈ Available Tools
Tool | Purpose |
| Read a note by path |
| List files/folders in the vault or a subdirectory |
| Create a new |
| Overwrite an existing note (previous content goes to the audit log) |
| Delete a note β requires |
| Full-text / tag search using Obsidian's own search engine |
| Find notes by partial name β case-insensitive, no exact path needed |
| Enumerate all tags in the vault with usage count; sortable by name or frequency |
| Add |
π Security β OWASP Top 10
Control | Implementation |
A01 β Broken Access Control | Path traversal blocked ( |
A02 β Cryptographic Failures | API key read from |
A03 β Injection | All inputs validated with Zod schemas; no |
A04 β Insecure Design | 512 KB max note size; 50-result cap on search; destructive ops require explicit |
A05 β Security Misconfiguration | Only |
A09 β Logging & Monitoring | Full audit log via winston with size-based rotation (5 MB / 10 files) |
Every tool call emits an audit line with action, params (sanitized), success, error, and timestamp.
β‘ Installation
Prerequisites
Obsidian Desktop with a vault open
The Local REST API plugin (by Adam Coddington) β install from Community Plugins, enable it, and:
Turn on "Enable Non-encrypted (HTTP) Server" (simpler than HTTPS self-signed certs)
Copy the API Key shown in the plugin settings
Node.js 18+
Claude Desktop (or another MCP-compatible client)
Configure Claude Desktop
Open %APPDATA%\Claude\claude_desktop_config.json on Windows (or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS) and add:
{
"mcpServers": {
"obsidian-secure": {
"command": "npx",
"args": ["-y", "obsidian-mcp-secure"],
"env": {
"OBSIDIAN_API_KEY": "your-api-key-from-the-plugin",
"OBSIDIAN_HOST": "http://127.0.0.1",
"OBSIDIAN_PORT": "27123",
"LOG_DIR": "C:/path/to/your/logs"
}
}
}
}Windows tip: if
npxfails silently, switch"command": "npx"to"command": "npx.cmd". Some Claude Desktop builds don't resolve barenpxon PATH.
Restart Claude Desktop (tray β Quit, then reopen) and the 9 tools will show up under obsidian-secure.
π€ Recommended companions
The real power of MCPs is composability. To reproduce the "read my note β fetch a URL β tell me if I'm applying it correctly" workflow, add the official fetch MCP alongside this one:
{
"mcpServers": {
"obsidian-secure": { "...": "as above" },
"fetch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"]
}
}
}Now Claude has both your vault and the live web in a single conversation.
π¬ Example prompts
With obsidian-secure + fetch enabled:
"Read my note
Projeto API Atendimento.md, then fetch https://developers.facebook.com/docs/whatsapp and tell me if my implementation matches the latest best practices."
"Search my vault for the tag
#ideiaand summarize the three ideas that appear most often. Then create a new note calledIdeias recorrentes.mdwith the summary."
"Read
Atomic Habits - Resumo.md, fetch https://jamesclear.com/atomic-habits, and point out where my notes drifted from the original."
Claude will orchestrate the tool calls automatically β no manual chaining.
π§© Comparison with in-Obsidian plugins
If your workflow lives inside Obsidian's sidebar, plugins like obsidian-claude-code are the right fit. This MCP targets a different shape:
Dimension |
|
|
Where the AI lives | Sidebar inside Obsidian | Claude Desktop (or any MCP client) |
Setup |
|
|
Tools | Read/Write/Edit + Bash + Grep + Glob + WebFetch | 9 purpose-built, Zod-validated tools |
Security posture | Full shell access to dev machine | Tight allowlist, audited, OWASP Top 10 |
Distribution | Manual clone, requires Bun | npm + official MCP Registry |
Composability with other sources | Inside its own sandbox | Any MCP-compatible client can mix it with fetch, GitHub, filesystem, etc. |
Best for | Dev who lives in Obsidian | Professional whose main surface is Claude Desktop |
Both are valid β they occupy different niches.
π§ Environment variables
Variable | Required | Default | Description |
| β | β | API key from the Local REST API plugin |
|
| Host (only | |
|
| Port of the plugin's HTTP server | |
|
| Directory for the audit log files |
πΊοΈ Roadmap
β Shipped in v1.2.1
Bug fix:
find_note_by_namesearches full path (folder + filename)Bug fix:
list_tagsnormalizes all API response formats (object, array of strings, array of objects withtagCount/taggedFilesCount)
β Shipped in v1.2.0
DXT package for one-click install in Claude Desktop (
npm run build:dxt)
β Shipped in v1.1.0
find_note_by_nameβ partial, case-insensitive name match across the entire vaultcreate_backlinksβ connect related notes with[[wikilinks]](explicit, auditable)list_tagsβ enumerate all tags in the vault with usage countUnit test suite (70 tests β utils, handlers, HTTP client) with Vitest
CI pipeline on every PR: tests + coverage +
npm audit+ static security analysis
π Up next
Smithery listing
Read-only mode flag for shared / multi-user setups
Ideas and PRs welcome β see CONTRIBUTING.md.
π License
MIT β see LICENSE.
π Credits
Model Context Protocol by Anthropic
Local REST API plugin by Adam Coddington β the foundation that makes this possible
Built at Dewtech by Wanderson Leandro
Security issues? See SECURITY.md for disclosure instructions.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/dewtech-technologies/obsidian-mcp-secure'
If you have feedback or need assistance with the MCP directory API, please join our Discord server