list_notes_tool
Retrieve and organize notes stored in your Obsidian vault or a specific directory. Customize results by specifying a directory or enabling recursive listing of subdirectories for comprehensive note management.
Instructions
List notes in the vault or a specific directory.
Args:
directory: Specific directory to list (optional, defaults to root)
recursive: Whether to list all subdirectories recursively (default: true)
Returns:
Vault structure and note paths
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ctx | No | ||
directory | No | ||
recursive | No |
Input Schema (JSON Schema)
{
"properties": {
"ctx": {
"default": null,
"title": "Ctx"
},
"directory": {
"default": null,
"title": "Directory",
"type": "string"
},
"recursive": {
"default": true,
"title": "Recursive",
"type": "boolean"
}
},
"type": "object"
}