obsidian mcp
Provides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.
Provides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.
This project provides a Model Context Protocol (MCP) server that exposes tools for interacting with an Obsidian vault.
Allows MCP clients (like AI assistants) to: - Read and write notes - Manage note metadata (frontmatter) - List notes and folders - Search notes by content or metadata - Manage daily notes - Get outgoing links, backlinks, and tags
Clone the repository (if you haven't already):
# git clone <repository-url>
# cd OMCP
Navigate to the project directory:
cd /path/to/your/OMCP
Create a Python virtual environment (recommended to avoid dependency conflicts):
python -m venv .venv
Activate the virtual environment:
.venvScriptsActivate.ps1
source .venv/bin/activate
(Your terminal prompt should now show (.venv)
at the beginning)Install the package and its dependencies:
pip install .
This server is configured using environment variables, which can be conveniently managed using a .env
file in the project root.
Copy the example file:
# From the project root directory (OMCP/)
cp .env.example .env
(On Windows, you might use copy .env.example .env
)
Edit the .env
file:
Open the newly created .env
file in a text editor.
Set OMCP_VAULT_PATH
: This is the only required variable. Update it with the absolute path to your Obsidian vault. Use forward slashes (/
) for paths, even on Windows.
OMCP_VAULT_PATH="/path/to/your/Obsidian/Vault"
Review Optional Settings: Adjust the other OMCP_
variables for daily notes, server port, or backup directory if needed. Read the comments in the file for explanations.
(Alternatively, instead of using a .env
file, you can set these as actual system environment variables. The server will prioritize system environment variables over the .env
file if both are set.)
While client applications like Claude Desktop will launch the server automatically using the configuration described below, you can also run the server manually from your terminal for direct testing or debugging.
.env
file as described in the Configuration section.# If not already active
.venvScriptsActivate.ps1
(Use source .venv/bin/activate
on Linux/macOS)(.venv) ...> python obsidian_mcp_server/main.py
The server will start and print the address it's listening on (e.g., http://127.0.0.1:8001
). You would typically press Ctrl+C
to stop it when finished testing.
Remember: If you intend to use this server with Claude Desktop or a similar launcher, you should not run it manually like this. Configure the client application instead (see next section), and it will handle starting and stopping the server process.
Many MCP clients (like Claude Desktop) can launch server processes directly. To configure such a client, you typically need to edit its JSON configuration file (e.g., claude_desktop_config.json
on macOS/Linux, find the equivalent path on Windows under AppData
).
⚠️ Important JSON Formatting Rules:
1. JSON files do not support comments (remove any //
or /* */
comments)
2. All strings must be properly quoted with double quotes ("
)
3. Windows paths must use escaped backslashes ()
4. Use a JSON validator (like jsonlint.com) to check your syntax
Here's an example entry to add under the mcpServers
key in the client's JSON configuration:
{
"mcpServers": {
"obsidian_vault": {
"command": "C:pathtoyourprojectOMCP.venvScriptspython.exe",
"args": ["C:pathtoyourprojectOMCPobsidian_mcp_servermain.py"],
"env": {
"OMCP_VAULT_PATH": "C:/path/to/your/Obsidian/Vault",
"OMCP_DAILY_NOTE_LOCATION": "Journal/Daily"
}
}
}
}
Key Points:
command
and args
fields:
) for path separators.exe
extension for the Python executableenv
block:/
) for better compatibility.exe
extensioncommand
path must point to the python.exe
executable inside the .venv
you createdargs
path must point to the main.py
file within the obsidian_mcp_server
subfolderenv
block is the most reliable way to ensure the server finds your vault pathCommon Pitfalls to Avoid: 1. Don't use single backslashes in Windows paths 2. Don't include comments in the JSON 3. Don't forget to escape backslashes in Windows paths 4. Don't mix forward and backslashes in the same path 5. Don't forget to properly quote all strings
list_folders
list_notes
get_note_content
get_note_metadata
get_outgoing_links
get_backlinks
get_all_tags
search_notes_content
search_notes_metadata
search_folders
create_note
edit_note
append_to_note
update_note_metadata
delete_note
get_daily_note_path
create_daily_note
append_to_daily_note
This project is actively developed. Here's a look at planned features:
v1.x (Near Term)
OMCP_TEMPLATE_DIR
).create_note_from_template
tool (using template name, target path, optional metadata).create_folder
utility function.create_folder
MCP tool.v1.y (Mid Term / Future Enhancements)
{{DATE}}
).list_templates
tool.append_to_note_by_metadata
).list_vault_structure
tool for comprehensive vault hierarchy view.v2.x+ (Potential Ideas / Longer Term)
move_item(source, destination)
(Initial version might not update links).rename_item(path, new_name)
(Initial version might not update links).replace_text_in_note(path, old, new, count)
.prepend_to_note(path, content)
.append_to_section(path, heading, content)
(Requires reliable heading parsing).get_local_graph(path)
(Combine outgoing/backlinks).search_notes_by_metadata_field(key, value)
.execute_dataview_query(query_type, query)
- Run Dataview queries and get structured resultssearch_by_dataview_field(field, value)
- Search notes by Dataview fieldsquery_tasks(status, due_date, tags)
- Search and filter tasks across vaultget_kanban_data(board_path)
- Get structured kanban board dataget_calendar_events(start_date, end_date)
- Query calendar events and tasksQ: My server can't find my vault. What's wrong?
A: This is usually due to incorrect path configuration. Check:
1. The OMCP_VAULT_PATH
in your .env
file uses forward slashes (/
) even on Windows
2. The path is absolute (starts from root)
3. The path doesn't end with a trailing slash
4. The vault directory exists and is accessible
Q: Why am I getting permission errors? A: This typically happens when: 1. The vault path points to a restricted directory 2. The Python process doesn't have read/write permissions 3. The vault is in a cloud-synced folder (like OneDrive) that's currently syncing
Try: 1. Moving your vault to a local directory 2. Running the server with elevated permissions 3. Checking your antivirus isn't blocking access
Q: My AI client can't connect to the server. What should I check? A: Verify these common issues: 1. The server is actually running (check terminal output) 2. The port in your client config matches the server's port 3. The Python path in your client config points to the correct virtual environment 4. All environment variables are properly set in the client config
Q: Why do I get "Connection refused" errors? A: This usually means: 1. The server isn't running 2. The port is already in use 3. Firewall is blocking the connection
Try:
1. Check if the server is running: netstat -ano | findstr :8001
(Windows)
2. Try a different port by setting OMCP_SERVER_PORT
in your .env
3. Temporarily disable firewall to test
Q: I get "[error] [obsidian_vault] Unexpected token 'S', "Starting O"... is not valid JSON". What's wrong? A: This error occurs when the client's JSON configuration file is malformed. Common causes: 1. Missing or extra commas in the JSON 2. Unescaped backslashes in Windows paths 3. Comments in the JSON (JSON doesn't support comments)
Check your client config file (e.g., claude_desktop_config.json
):
1. Use a JSON validator (like jsonlint.com) to check syntax
2. For Windows paths, escape backslashes: "C:pathtofile"
3. Remove any comments (// or / /)
4. Ensure all strings are properly quoted
5. Check that all brackets and braces are properly closed
Example of correct Windows path formatting:
{
"mcpServers": {
"obsidian_vault": {
"command": "C:pathtoyourprojectOMCP.venvScriptspython.exe",
"args": ["C:pathtoyourprojectOMCPobsidian_mcp_servermain.py"]
}
}
}
Q: I get a timeout error and "Server disconnected" message. What's happening? A: This error pattern (initialization succeeds, then times out after 60 seconds) usually means: 1. The server is already running in another process 2. The port is already in use by another application 3. The server process is being terminated unexpectedly
Try these steps in order:
Check for running server processes:
# On Windows
netstat -ano | findstr :8001
# Look for the PID and then:
taskkill /F /PID <PID>
# On Linux/macOS
lsof -i :8001
# Look for the PID and then:
kill -9 <PID>
Check for other applications using the port:
If you're not sure, try changing the port in your .env
:
OMCP_SERVER_PORT=8002
Verify server process:
End any suspicious processes
Check system resources:
Verify your Python environment has proper permissions
Reset everything:
.env
file and create a new one from .env.example
If the issue persists after trying all these steps, please share:
1. The complete error log
2. The output of netstat -ano | findstr :8001
(Windows) or lsof -i :8001
(Linux/macOS)
3. Any error messages from your system's event logs
Q: The server disconnects immediately with "Server transport closed unexpectedly... process exiting early". What's wrong? A: This error means the Python server process crashed almost immediately after being launched by the client. It's not a timeout; the server script itself failed to run or stay running.
Common Causes:
1. Incorrect Paths in Client JSON:
* command
doesn't point to the correct python.exe
inside the .venv
.
* args
doesn't point to the correct obsidian_mcp_server/main.py
script.
* Incorrect path separators or missing backslash escapes () on Windows.
2. Missing Dependencies:
* Required packages from
requirements.txt
are not installed in the .venv
.
* The client is launching Python without properly activating the virtual environment.
3. Syntax Errors: A recent code change introduced a Python syntax error.
4. Critical Configuration/Permission Error:
* Error reading the .env
file at startup.
* Invalid or inaccessible OMCP_VAULT_PATH
.
* Python process lacks permissions to run or access files.
5. Early Unhandled Exception: An error occurs during initial setup before the server starts listening.
Troubleshooting Steps:
1. Verify Client JSON Paths: Double-check the absolute paths for command
and args
in your client's JSON config. Use escaped backslashes () for Windows paths.
2. Test Manually (Crucial Step):
* Activate the virtual environment in your terminal:
# On Windows
..venvScriptsactivate
# On Linux/macOS
source .venv/bin/activate
* Run the server directly:
python obsidian_mcp_server/main.py
* Look closely for any error messages printed directly in the terminal. This bypasses the client and often reveals the root cause (like ImportError
, SyntaxError
, FileNotFoundError
).
3. Check Dependencies: With the venv activated, run pip check
and pip install -r requirements.txt
.
4. Validate .env
and Vault Path: Ensure .env
exists, is readable, and OMCP_VAULT_PATH
is correct (use forward slashes /
).
5. Review Recent Code Changes: Check for syntax errors or issues in recently edited Python files.
Q: Why can't I create/edit notes in certain folders? A: This could be due to: 1. Path security restrictions (trying to write outside vault) 2. Folder permissions 3. File locks from other processes
Try: 1. Using relative paths within your vault 2. Checking folder permissions 3. Closing other programs that might have the files open
Q: Why are my note updates not being saved? A: Common causes: 1. The note path is incorrect 2. The content format is invalid 3. Backup creation failed
Check: 1. The note path exists and is accessible 2. The content is valid markdown 3. The backup directory has write permissions
Q: Why aren't my daily notes being created in the right location?
A: Verify:
1. OMCP_DAILY_NOTE_LOCATION
is set correctly in .env
2. The path uses forward slashes
3. The target folder exists
4. The date format matches your vault's settings
Q: How do I check if the server is working correctly? A: Run the test client:
python test_client.py
This will perform a series of operations and report any issues.
Q: Where can I find error logs? A: Check: 1. The terminal where the server is running 2. The backup directory for failed operations 3. The system event logs for permission issues
Q: How do I reset everything to start fresh?
A: Try these steps:
1. Stop the server
2. Delete the .env
file
3. Create a new .env
from .env.example
4. Restart the server
Contributions Welcome!