# ------------------------------------
# Obsidian MCP Tool Server Configuration
# ------------------------------------
# --- Required ---
# Absolute path to your Obsidian vault.
# Replace the example path below with your actual vault path.
# Use forward slashes (/) even on Windows for better compatibility here.
OMCP_VAULT_PATH="/path/to/your/Obsidian/Vault"
# --- Optional: Daily Notes ---
# See https://strftime.org/ for formatting options
OMCP_DAILY_NOTE_FORMAT="%Y-%m-%d"
# Relative path within the vault where daily notes should be stored.
# Use forward slashes. Leave empty or comment out to use vault root.
OMCP_DAILY_NOTE_LOCATION="Journal/Daily"
# Optional: Path to a template file (relative to vault root) for new daily notes.
# Use forward slashes. Comment out if not using a template.
# OMCP_DAILY_NOTE_TEMPLATE="Templates/Daily Note Template.md"
# --- Optional: Server ---
# Host and Port for the MCP server to listen on.
# Defaults to 127.0.0.1 and 8001 if not set.
# OMCP_SERVER_HOST="127.0.0.1"
# OMCP_SERVER_PORT="8001"
# --- Optional: Backups ---
# Name of the directory (relative to vault root) to store backups in.
# Defaults to _mcp_backups if not set.
# OMCP_BACKUP_DIR_NAME="_mcp_backups"