List Obsidian Notes
obsidian_list_notesList notes in an Obsidian vault with optional folder filtering and pagination. Returns paths, names, tags, and modification dates for notes, enabling efficient vault traversal.
Instructions
List notes in the Obsidian vault with pagination support.
Returns a list of note paths, names, tags, and modification dates. Use 'folder' to filter to a specific directory. Use 'offset' and 'limit' for pagination on large vaults.
Returns JSON by default with schema: { "total": number, "count": number, "offset": number, "notes": [{ "path": string, "name": string, "tags": string[], "modified": string }], "hasMore": boolean, "nextOffset"?: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of notes to return | |
| folder | No | Filter to notes within a specific folder path | |
| offset | No | Number of notes to skip | |
| response_format | No | Output format: 'json' for structured data or 'markdown' for human-readable | json |