list_notes
List markdown notes in an Obsidian vault with sorting, filtering, and pagination. Retrieve file paths, names, dates, and sizes to find and manage notes effectively.
Instructions
List markdown notes in the vault with sorting, filtering, and pagination. Returns paths, names, dates, and sizes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of notes to return (for pagination) | |
| folder | No | Filter notes by folder path (e.g., "Projects" or "Daily") | |
| offset | No | Number of notes to skip (for pagination, default: 0) | |
| sortBy | No | Sort notes by: name, modified date, or created date (default: modified) | modified |
| recursive | No | Include notes in subfolders (default: true) | |
| sortOrder | No | Sort order: ascending or descending (default: desc) | desc |
| namePattern | No | Filter notes by name using regex pattern (e.g., "^2024" for notes starting with 2024) |