Supports environment variable loading through dotenv for server configuration.
Provides comprehensive access to Obsidian vaults with tools for reading, writing, searching, and managing notes. Enables file operations, frontmatter management, tag operations, and Dataview query execution.
Enables secure remote access to Obsidian vaults through Tailscale Funnel with end-to-end encryption, automatic HTTPS certificates, and no port forwarding requirements.
Uses Zod for schema validation and custom sanitization logic in MCP server operations.
Obsidian MCP Server - Enhanced
Enhanced Obsidian MCP Server with Claude.ai Remote Integration, Tailscale Support, and Advanced Query Capabilities!
🔥 Enhanced Fork Notice: This is an enhanced version of the excellent cyanheads/obsidian-mcp-server with additional features specifically tailored for remote Claude.ai integration, advanced task querying, and security via Tailscale.
An MCP (Model Context Protocol) server providing comprehensive access to your Obsidian vault. Enables LLMs and AI agents to read, write, search, and manage your notes and files through the Obsidian Local REST API plugin.
Built on the cyanheads/mcp-ts-template
, this server follows a modular architecture with robust error handling, logging, and security features.
🚀 Enhanced Features (This Fork)
🌐 Claude.ai Remote Integration
Perfect integration with Claude.ai's Remote MCP feature:
- Native HTTP Transport: Rebuilt transport layer for Claude.ai compatibility
- Simple API Key Authentication: Uses your Obsidian API key in the external URL
- Zero Configuration: Works out-of-the-box with Claude.ai Remote MCP servers
- Production Ready: Enterprise-grade stability and error handling
🔒 Tailscale Secure Remote Access
Access your Obsidian vault securely from anywhere:
- Tailscale Funnel Integration: Secure HTTPS endpoints with automatic certificates
- End-to-End Encryption: All traffic encrypted through Tailscale network
- No Port Forwarding: Zero network configuration required
- Access Control: Built-in Tailscale ACL support for enterprise security
📊 Enhanced Task & Query System
Advanced querying capabilities beyond the original:
- Tasks Plugin Integration: Deep integration with Obsidian Tasks plugin
- Advanced Date Parsing: Natural language date recognition
- Priority Detection: Visual and text-based priority parsing
- Multiple Output Formats: Table, list, and summary views
🚀 Core Capabilities: Obsidian Tools 🛠️
This server equips your AI with specialized tools to interact with your Obsidian vault:
Tool Name | Description | Key Features |
---|---|---|
obsidian_read_file | Retrieves the content and metadata of a specified file. | - Read in markdown or json format.- Case-insensitive path fallback.- Includes file stats (creation/modification time). |
obsidian_update_file | Modifies notes using whole-file operations. | - append , prepend , or overwrite content.- Can create files if they don't exist.- Targets files by path, active note, or periodic note. |
obsidian_search_replace | Performs search-and-replace operations within a target note. | - Supports string or regex search.- Options for case sensitivity, whole word, and replacing all occurrences. |
obsidian_global_search | Performs a search across the entire vault. | - Text or regex search.- Filter by path and modification date.- Paginated results. |
obsidian_list_files | Lists files and subdirectories within a specified vault folder. | - Filter by file extension or name regex.- Provides a formatted tree view of the directory. |
obsidian_manage_frontmatter | Atomically manages a note's YAML frontmatter. | - get , set , or delete frontmatter keys.- Avoids rewriting the entire file for metadata changes. |
obsidian_manage_tags | Adds, removes, or lists tags for a note. | - Manages tags in both YAML frontmatter and inline content. |
obsidian_delete_file | Permanently deletes a specified file from the vault. | - Case-insensitive path fallback for safety. |
obsidian_dataview_query | Execute Dataview DQL queries against your vault. | - Run TABLE, LIST queries using Dataview syntax.- Query notes by tags, frontmatter, dates.- Generate reports and analytics. |
obsidian_task_query | Search and analyze tasks across your vault. | - Filter by status, date ranges, priorities.- Multiple output formats.- Extract task metadata (due dates, tags). |
Table of Contents
| Overview | Features | Installation | | Configuration | Project Structure | Vault Cache Service | | Tools | Resources | Development | License |
Overview
The Obsidian MCP Server acts as a bridge, allowing applications (MCP Clients) that understand the Model Context Protocol (MCP) – like advanced AI assistants (LLMs), IDE extensions, or custom scripts – to interact directly and safely with your Obsidian vault.
Instead of complex scripting or manual interaction, your tools can leverage this server to:
- Automate vault management: Read notes, update content, manage frontmatter and tags, search across files, list directories, and delete files programmatically.
- Integrate Obsidian into AI workflows: Enable LLMs to access and modify your knowledge base as part of their research, writing, or coding tasks.
- Build custom Obsidian tools: Create external applications that interact with your vault data in novel ways.
Built on the robust mcp-ts-template
, this server provides a standardized, secure, and efficient way to expose Obsidian functionality via the MCP standard. It achieves this by communicating with the powerful Obsidian Local REST API plugin running inside your vault.
Developer Note: This repository includes a .clinerules file that serves as a developer cheat sheet for your LLM coding agent with quick reference for the codebase patterns, file locations, and code snippets.
Features
Core Utilities
Leverages the robust utilities provided by the mcp-ts-template
:
- Logging: Structured, configurable logging (file rotation, console, MCP notifications) with sensitive data redaction.
- Error Handling: Centralized error processing, standardized error types (
McpError
), and automatic logging. - Configuration: Environment variable loading (
dotenv
) with comprehensive validation. - Input Validation/Sanitization: Uses
zod
for schema validation and custom sanitization logic. - Request Context: Tracking and correlation of operations via unique request IDs.
- Type Safety: Strong typing enforced by TypeScript and Zod schemas.
- HTTP Transport Option: Native Node.js HTTP server with session management, CORS support, and API key authentication.
Obsidian Integration
- Obsidian Local REST API Integration: Communicates directly with the Obsidian Local REST API plugin via HTTP requests managed by the
ObsidianRestApiService
. - Comprehensive Command Coverage: Exposes key vault operations as MCP tools (see Tools section).
- Vault Interaction: Supports reading, updating (append, prepend, overwrite), searching (global text/regex, search/replace), listing, deleting, and managing frontmatter and tags.
- Targeting Flexibility: Tools can target files by path, the currently active file in Obsidian, or periodic notes (daily, weekly, etc.).
- Vault Cache Service: An intelligent in-memory cache that improves performance and resilience. It caches vault content, provides a fallback for the global search tool if the live API fails, and periodically refreshes to stay in sync.
- Safety Features: Case-insensitive path fallbacks for file operations, clear distinction between modification types (append, overwrite, etc.).
Installation
Prerequisites
- Obsidian: You need Obsidian installed.
- Obsidian Local REST API Plugin: Install and enable the Obsidian Local REST API plugin within your Obsidian vault.
- API Key: Configure an API key within the Local REST API plugin settings in Obsidian. You will need this key to configure the server.
- Node.js & npm: Ensure you have Node.js (v18 or later recommended) and npm installed.
- Tailscale (for remote access): Install Tailscale and enable Tailscale Funnel for secure remote Claude.ai integration.
💡 Quick Setup: For automatic startup on boot, see the Auto-Start Setup Guide after installation.
Installation
- Clone this enhanced repository:
- Install dependencies:
- Build the project:This compiles the TypeScript code to JavaScript in the
dist/
directory and makes the entry point executable.
Configuration
Environment Variables
Configure the server using environment variables.
These variables must be set in the MCP client configuration (e.g., cline_mcp_settings.json
) or in your environment before starting the server (if running directly).
If running directly, they can be set in a .env
file in the project root or directly in your environment.
Variable | Description | Required | Default |
---|---|---|---|
OBSIDIAN_API_KEY | API Key from the Obsidian Local REST API plugin. | Yes | undefined |
OBSIDIAN_BASE_URL | Base URL of your Obsidian Local REST API. | Yes | http://127.0.0.1:27123 |
MCP_TRANSPORT_TYPE | Server transport: stdio or http . | No | http |
MCP_HTTP_PORT | Port for the HTTP server. | No | 3010 |
MCP_HTTP_HOST | Host for the HTTP server. | No | 127.0.0.1 |
MCP_ALLOWED_ORIGINS | Comma-separated origins for CORS. Set for production. | No | (none) |
MCP_AUTH_SECRET_KEY | 32+ char secret for JWT auth. Not used in this version. | No | undefined |
MCP_LOG_LEVEL | Logging level (debug , info , error , etc.). | No | info |
OBSIDIAN_VERIFY_SSL | Set to false to disable SSL verification. | No | true |
OBSIDIAN_ENABLE_CACHE | Set to true to enable the in-memory vault cache. | No | true |
OBSIDIAN_CACHE_REFRESH_INTERVAL_MIN | Refresh interval for the vault cache in minutes. | No | 10 |
Connecting to the Obsidian API
To connect the MCP server to your Obsidian vault, you need to configure the base URL (OBSIDIAN_BASE_URL
) and API key (OBSIDIAN_API_KEY
). The Obsidian Local REST API plugin offers two ways to connect:
- Encrypted (HTTPS) - Default:
- The plugin provides a secure
https://
endpoint (e.g.,https://127.0.0.1:27124
). - This uses a self-signed certificate, which will cause connection errors by default.
- To fix this, you must set the
OBSIDIAN_VERIFY_SSL
environment variable to"false"
. This tells the server to trust the self-signed certificate.
- The plugin provides a secure
- Non-encrypted (HTTP) - Recommended for Simplicity:
- In the plugin's settings within Obsidian, you can enable the "Non-encrypted (HTTP) Server".
- This provides a simpler
http://
endpoint (e.g.,http://127.0.0.1:27123
). - When using this URL, you do not need to worry about SSL verification.
Example env
configuration for your MCP client:
Using the non-encrypted HTTP URL (recommended):
Using the encrypted HTTPS URL:
Local MCP Client Settings (Optional)
Note: For Claude.ai Remote MCP integration, skip this section and use the Tailscale Remote Access Setup instead.
For local MCP clients (e.g., Cline), add to your settings (e.g., cline_mcp_settings.json
):
🌐 Remote Access Setup (Tailscale)
For remote access to your Obsidian vault from anywhere, you can use Tailscale to securely expose your MCP server over the internet.
Prerequisites
- Tailscale Account: Sign up at tailscale.com
- Tailscale Installed: Install Tailscale on your machine running the MCP server
- Tailscale Funnel Enabled: Enable Tailscale Funnel for your account
Setup Steps
- Configure HTTP Transport: Set the MCP server to use HTTP transport:
- Start the MCP Server:
- Enable Tailscale Funnel:
- Get Your Public URL: Tailscale will provide a public HTTPS URL like:
Claude.ai Remote MCP Configuration (Enhanced)
Add to your Claude.ai Remote MCP servers with simplified authentication:
Note: Claude.ai Remote MCP only supports URL parameter authentication. The API key must be included in the URL as shown above.
Security Considerations
- API Key Authentication: The server uses your Obsidian API key for authentication
- Tailscale Encryption: All traffic is encrypted end-to-end by Tailscale
- Private Network: Only you can access the server through your Tailscale network
- Automatic SSL: Tailscale Funnel provides automatic HTTPS certificates
Example Usage
Once set up, you can use tools remotely from Claude.ai:
🚀 Pro Tip: For production use, set up automatic startup on boot so your server and Tailscale Funnel start automatically without manual intervention.
Project Structure
The codebase follows a modular structure within the src/
directory:
For a detailed file tree, run npm run tree
or see docs/tree.md.
Vault Cache Service
This server includes an intelligent in-memory cache designed to enhance performance and resilience when interacting with your vault.
Purpose and Benefits
- Performance: By caching file content and metadata, the server can perform search operations much faster, especially in large vaults. This reduces the number of direct requests to the Obsidian Local REST API, resulting in a snappier experience.
- Resilience: The cache acts as a fallback for the
obsidian_global_search
tool. If the live API search fails or times out, the server seamlessly uses the cache to provide results, ensuring that search functionality remains available even if the Obsidian API is temporarily unresponsive. - Efficiency: The cache is designed to be efficient. It performs an initial build on startup and then periodically refreshes in the background by checking for file modifications, ensuring it stays reasonably up-to-date without constant, heavy API polling.
How It Works
- Initialization: When enabled, the
VaultCacheService
builds an in-memory map of all.md
files in your vault, storing their content and modification times. - Periodic Refresh: The cache automatically refreshes at a configurable interval (defaulting to 10 minutes). During a refresh, it only fetches content for files that are new or have been modified since the last check.
- Proactive Updates: After a file is modified through a tool like
obsidian_update_file
, the service proactively updates the cache for that specific file, ensuring immediate consistency. - Search Fallback: The
obsidian_global_search
tool first attempts a live API search. If this fails, it automatically falls back to searching the in-memory cache.
Configuration
The cache is enabled by default but can be configured via environment variables:
OBSIDIAN_ENABLE_CACHE
: Set totrue
(default) orfalse
to enable or disable the cache service.OBSIDIAN_CACHE_REFRESH_INTERVAL_MIN
: Defines the interval in minutes for the periodic background refresh. Defaults to10
.
Tools
The Obsidian MCP Server provides a suite of tools for interacting with your vault, callable via the Model Context Protocol.
Tool Name | Description | Key Arguments |
---|---|---|
obsidian_read_file | Retrieves the content and metadata of a file. | filePath , format? , includeStat? |
obsidian_update_file | Modifies a file by appending, prepending, or overwriting. | targetType , content , targetIdentifier? , wholeFileMode |
obsidian_search_replace | Performs search-and-replace operations in a note. | targetType , replacements , useRegex? , replaceAll? |
obsidian_global_search | Searches the entire vault for content. | query , searchInPath? , useRegex? , page? , pageSize? |
obsidian_list_files | Lists files and subdirectories in a folder. | dirPath , fileExtensionFilter? , nameRegexFilter? |
obsidian_manage_frontmatter | Gets, sets, or deletes keys in a note's frontmatter. | filePath , operation , key , value? |
obsidian_manage_tags | Adds, removes, or lists tags in a note. | filePath , operation , tags |
obsidian_delete_file | Permanently deletes a file from the vault. | filePath |
obsidian_dataview_query | Execute Dataview DQL queries against your vault. | query , format? |
obsidian_task_query | Search and analyze tasks across your vault. | status? , dateRange? , folder? , priority? , format? |
obsidian_periodic_notes | Create and manage daily, weekly, monthly, yearly notes. | operation , periodType , date? , content? , append? |
obsidian_block_reference | Work with block references and heading operations. | operation , filePath , heading? , content? , blockId? |
obsidian_graph_analysis | Analyze note connections and vault relationships. | operation , filePath? , minConnections? , maxDepth? |
obsidian_template_system | Create files from templates with variable substitution. | operation , templatePath? , targetPath? , variables? |
obsidian_smart_linking | Get intelligent link suggestions and recommendations. | operation , filePath? , content? , maxSuggestions? |
Note: All tools support comprehensive error handling and return structured JSON responses.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Attribution
This enhanced version is based on the excellent work by cyanheads in the original obsidian-mcp-server project. All core functionality and architecture credit goes to the original author.
Enhancements in this fork:
- Claude.ai Remote MCP integration and compatibility fixes
- Tailscale Funnel integration for secure remote access
- Enhanced HTTP transport layer with simplified authentication
- Advanced task querying with Tasks plugin integration
- 5 New Advanced Tools: Periodic notes, block references, graph analysis, template system, and smart linking
- Production-ready configuration for enterprise use
This server cannot be installed
A Model Context Protocol server that provides comprehensive access to Obsidian vaults with Claude.ai remote integration, Tailscale support, and advanced query capabilities.
Related MCP Servers
- -securityAlicense-qualityEnables interaction between LLMs and Obsidian vaults through the Model Context Protocol, supporting secure file operations, content management, and advanced search capabilities.Last updated -9434116TypeScriptApache 2.0
- -securityAlicense-qualityA local MCP server that enables AI applications like Claude Desktop to securely access and work with Obsidian vaults, providing capabilities for reading notes, executing templates, and performing semantic searches.Last updated -192TypeScriptMIT License
- -securityFlicense-qualityThis project implements a Model Context Protocol (MCP) server for connecting AI models with Obsidian knowledge bases. Through this server, AI models can directly access and manipulate Obsidian notes, including reading, creating, updating, and deleting notes, as well as managing folder structures.Last updated -5987JavaScript
- -securityAlicense-qualityA Model Context Protocol server that enables AI assistants to read, write, and manipulate notes in your Obsidian vault through a standardized interface.Last updated -598TypeScriptISC License