We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Rwb3n/obsidian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•707 B
"""Custom exceptions for Obsidian MCP Server utilities."""
class VaultError(Exception):
"""Base class for errors related to vault operations."""
pass
class NoteNotFoundError(VaultError):
"""Raised when a specified note is not found."""
pass
class InvalidPathError(VaultError):
"""Raised when a path is invalid or outside the vault."""
pass
class MetadataError(VaultError):
"""Raised during errors parsing or manipulating note metadata."""
pass
class BackupError(VaultError):
"""Raised when creating a backup fails."""
pass
class NoteCreationError(VaultError):
"""Raised when creating a note fails (e.g., already exists)."""
pass