list_notes
Retrieve notes from your Obsidian vault with folder filtering, recursive search options, and result limits for organized content management.
Instructions
List notes in the vault with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | No | ||
limit | No | ||
recursive | No |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"default": "",
"title": "Folder",
"type": "string"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"recursive": {
"default": true,
"title": "Recursive",
"type": "boolean"
}
},
"type": "object"
}