obsidian_list_notes
List notes and folders in an Obsidian vault, optionally scoped to one folder, to discover its structure before reading or writing.
Instructions
List notes and folders in the vault, optionally scoped to one folder.
Use this to discover the vault's structure before reading or writing. For finding a note by its contents, obsidian_search_notes is faster.
Args: params (ListNotesInput): - folder (str): Vault-relative folder, empty for the root - recursive (bool): Walk nested folders too - response_format (str): 'markdown' or 'json'
Returns: str: Markdown list, or JSON of the shape {"folder": str, "count": int, "backend": "rest"|"filesystem", "entries": [{"path": str, "is_folder": bool, "size_bytes": int, "modified_at": str}]} On failure: "Error: "
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |