Obsidian MCP Server

by cyanheads
Verified

obsidian_get_properties

Get properties (title, tags, status, etc.) from an Obsidian note's YAML frontmatter. Returns all available properties including custom fields.

Input Schema

NameRequiredDescriptionDefault
filepathYesPath to the note file (relative to vault root)

Input Schema (JSON Schema)

{ "properties": { "filepath": { "description": "Path to the note file (relative to vault root)", "format": "path", "type": "string" } }, "required": [ "filepath" ], "type": "object" }