Obsidian MCP Server
Enables MCP clients to interact with Obsidian vaults via filesystem operations and optional REST API integration for advanced UI commands. It features multi-vault auto-discovery, concurrent-safe file handling, and comprehensive tools for searching, reading, and managing vault content.
README
Obsidian MCP Server
Enables MCP clients (e.g., Claude Desktop) to interact with Obsidian vaults seamlessly.
Features
- Multi-Vault Support: Access unlimited Obsidian vaults without per-vault configuration
- Auto-Discovery: Automatically discovers REST API credentials from plugin configuration
- Concurrent-Safe: File locking prevents data corruption during simultaneous access
- Hybrid Access: Filesystem operations (always available) + REST API integration (optional)
- Security-First: Path validation, rate limiting, command allowlist, and secure credential handling
- Zero-Config: Works immediately with filesystem access; REST API features activate when plugin is installed
Installation
From Source (Current)
Currently, installation from source is required:
git clone <repository-url>
cd obsidian-mcp-server
npm install
npm run build
Via NPM (Coming Soon)
Once published to npm, you'll be able to install globally:
npm install -g obsidian-mcp-server
Note: The package is not yet published. Use "From Source" installation for now.
Quick Start
1. Basic Setup (Filesystem Access Only)
The server automatically detects and configures your Obsidian vaults on first run! No manual configuration needed.
What happens automatically:
- Config file is created at
~/.config/mcp-obsidian/config.json(macOS/Linux) or%APPDATA%/mcp-obsidian/config.json(Windows) - Server scans common locations (Documents, Dropbox, iCloud, etc.) for Obsidian vaults
- Discovered vault paths are automatically added to the configuration
- Ready to use immediately!
Common locations scanned:
~/Documents/Obsidian~/Dropboxand subdirectories~/Library/CloudStorage/Dropbox(macOS)~/Library/Mobile Documents/iCloud~md~obsidian(macOS)~/OneDrive/Documents/Obsidian(Windows)
Note: You can override the config location by setting the MCP_OBSIDIAN_CONFIG environment variable.
This enables immediate access to all discovered vaults using filesystem operations.
2. Enable REST API Features (Optional)
Install the Obsidian Local REST API plugin in your vault:
- Open Obsidian Settings → Community Plugins
- Browse and install "Local REST API"
- Enable the plugin
- The plugin will generate an API key automatically
No additional configuration needed - the server will auto-discover the credentials.
3. Connect to Claude
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["/path/to/obsidian-mcp-server/dist/index.js"]
}
}
}
Note: The env section is optional. If omitted, the server uses the default config location (~/.config/mcp-obsidian/config.json). Only add it if you want to use a custom config path:
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["/path/to/obsidian-mcp-server/dist/index.js"],
"env": {
"MCP_OBSIDIAN_CONFIG": "/custom/path/to/config.json"
}
}
}
}
Restart Claude Desktop.
Configuration
Most users don't need to configure anything! The server auto-detects your vaults on first run.
Manual Configuration (Optional)
If you need to customize settings or add vaults in non-standard locations, edit ~/.config/mcp-obsidian/config.json:
Minimal Configuration:
{
"defaultVaultPath": "/Users/yourname/Documents/Obsidian"
}
Full Configuration:
See config.example.json for a complete configuration with all options:
- defaultVaultPath: Base directory containing your vaults
- vaults: Named vault mappings for easy access
- security: Path restrictions, rate limits, allowed hosts/ports
- features: File locking, caching, file watching settings
- logging: Log level and sensitive data sanitization
Named Vaults
For easier access, define named vaults in your config:
{
"defaultVaultPath": "/Users/yourname/Documents/Obsidian",
"vaults": {
"personal": "PersonalVault",
"work": "WorkVault"
}
}
Then reference them by name in Claude: "vault": "personal" instead of full paths.
Available Tools
File Operations
- list_vaults: List all accessible vaults
- get_vault_info: Get vault metadata (file count, plugin status)
- list_files: List files in a vault (supports recursive, hidden files)
- get_file: Read file content with optional frontmatter parsing
- write_file: Write or update files with conflict detection
- append_content: Append content to existing files
- search_files: Search with regex, case sensitivity, context
- get_metadata: Extract frontmatter, tags, links, word count
Obsidian Integration (Requires REST API Plugin)
- execute_command: Execute whitelisted Obsidian commands
- open_file: Open files in Obsidian UI
- get_active_file: Get currently active file
- open_graph: Open graph view
Allowed Commands
For security, only these Obsidian commands are allowed:
graph:open,graph:open-localeditor:toggle-sourceapp:go-back,app:go-forwardglobal-search:openworkspace:new-file,file-explorer:reveal-active-fileworkspace:split-vertical,workspace:split-horizontal
Testing
Test with Claude Desktop
- Restart Claude Desktop after configuration
- Open a conversation and try:
List my Obsidian vaults
Expected response: List of discovered vaults with metadata.
Read the file "Daily Notes/2026-01-14.md" from my Personal vault
Expected response: File content with metadata.
Search for "project" in my Work vault
Expected response: Search results with context.
Test with MCP Inspector
npx @modelcontextprotocol/inspector dist/index.js
This opens a web interface to test all tools interactively.
Verify File Locking
Open a file in Obsidian and simultaneously have Claude read/write it. The server will handle concurrent access safely with file locking.
Verify Auto-Discovery
Install the REST API plugin in a vault, then:
Get info about my Personal vault
Expected response should include "hasRestApi": true and "pluginVersion": "1.x.x".
Architecture
Hybrid Provider System
Operation Request
↓
Router Decision
↓
┌───┴───┐
↓ ↓
Filesystem REST API
Provider Provider
↓ ↓
Direct Plugin
File I/O Commands
- Filesystem Provider: Always available, handles read/write/search
- REST API Provider: Optional, handles UI integration and commands
- Operation Router: Intelligently selects the appropriate provider
Security Layers
- Path Validation: Prevents directory traversal, validates symlinks
- Rate Limiting: Global, per-vault, and per-operation limits
- Command Allowlist: Only whitelisted Obsidian commands allowed
- Credential Security: Memory-only cache, no disk serialization
Concurrent Access Handling
- File Locking: Read locks (shared) and write locks (exclusive)
- Conflict Detection: Timestamp verification before writes
- Atomic Writes: Write to temp file, then rename
- Lock Timeout: Automatic cleanup of expired locks
Troubleshooting
Vaults Not Found
Problem: list_vaults returns empty array
Solutions:
- First check: Restart Claude Desktop to trigger auto-detection
- Verify
defaultVaultPathin config points to correct directory - Ensure vaults have
.obsidiandirectory (valid Obsidian vaults) - Check
security.allowedVaultPathsincludes the vault location - If your vaults are in a non-standard location, manually add the path to
allowedVaultPathsin the config
REST API Features Not Working
Problem: "REST API required but plugin not installed"
Solutions:
- Install "Local REST API" plugin in Obsidian
- Enable the plugin in Obsidian settings
- Verify plugin created
data.jsonin.obsidian/plugins/obsidian-local-rest-api/ - Clear credential cache: restart the MCP server
File Lock Timeout
Problem: "Could not acquire write lock"
Solutions:
- Close files in Obsidian that are being edited
- Wait for ongoing operations to complete
- Increase
features.fileLocking.timeoutin config - Check for stuck locks: restart the server
Rate Limit Exceeded
Problem: "Rate limit exceeded"
Solutions:
- Wait before retrying
- Increase rate limits in config if legitimate usage
- Check for loops in your Claude interactions
Permission Denied
Problem: "Vault path not in allowed directories"
Solutions:
- First try: Delete
~/.config/mcp-obsidian/config.jsonand restart to trigger auto-detection - Manually add vault path to
security.allowedVaultPathsin the config - Use absolute paths, not relative paths
- Check symlink targets are also in allowed paths
- Ensure the path exists and is accessible
Security Considerations
Threat Model
This server operates locally and assumes:
- The local machine is trusted
- Claude Desktop is trusted
- Only you have access to the MCP server process
Protections Implemented
- Path Traversal Prevention: Rejects
..and~patterns, validates all paths - API Key Security: Credentials stored only in memory, never logged
- Command Injection Prevention: Explicit allowlist of safe commands only
- Rate Limiting: Prevents abuse and DoS scenarios
- Symlink Validation: Resolves and validates symlink targets
- Host/Port Validation: Only localhost connections allowed
What This Does NOT Protect Against
- Malicious code in your Obsidian vault (markdown files can't execute code)
- Attacks on Obsidian itself
- Physical access to your machine
- Compromised Claude Desktop application
Development
Build
npm run build
Watch Mode
npm run watch
Run Tests
npm test
Lint
npm run lint
Contributing
Contributions welcome! Please:
- Follow existing code style (TypeScript, ESLint, Prettier)
- Add tests for new features
- Update documentation
- Ensure security best practices
License
MIT
Support
For issues, questions, or feature requests, please open an issue on the repository.
Credits
Built with:
- Model Context Protocol SDK
- gray-matter for frontmatter parsing
- axios for HTTP requests
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。