find_files
Search Obsidian Vault for files by name or keyword and retrieve matching file paths.
Instructions
Find files in the Obsidian Vault that match a query and return the file paths.
Args:
query: Search term to match against file names (case-insensitive).
Can be a partial filename, extension, or keyword.
Examples: 'meeting', '.md', 'project-alpha'
Returns:
List of relative file paths that match the query.
Use these paths with get_file_content() to read the files.
Returns message if no matches found.
Note: Searches only file names/paths, not file contents. Use find_in_all_file_content()
to search within file contents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |