find_in_all_file_content
Search the entire Obsidian vault's note contents for a query and receive file paths of all matching notes.
Instructions
Find a query in the content of all files in the Obsidian Vault and return the file paths.
Args:
query: Text to search for within file contents (case-insensitive).
Can be words, phrases, or partial text.
Examples: 'meeting notes', 'project deadline', 'TODO'
Returns:
Newline-separated list of file paths that contain the query text.
Only returns the file paths, not the matching content excerpts.
Use get_file_content() on returned paths to read the full files.
Returns message if no matches found.
Note: Searches the full text content of all readable files. Skips binary files.
For filename searches, use find_files() instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |