Start Async Search
fc_start_searchInitiates an asynchronous file search with wildcards (* and ?) in a specified directory, returning a search ID to retrieve results later.
Instructions
Starts a background search. Claude can perform other tasks in the meantime.
Args:
directory (string): Start directory
pattern (string): Search pattern (wildcards: * and ?)
Returns:
Search ID for fc_get_search_results, fc_stop_search
Example: Start search: fc_start_search("C:\Users", "*.pdf") Get results later: fc_get_search_results(search_id)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | Search pattern with wildcards | |
| directory | Yes | Start directory |