Start Async Search
fc_start_searchBegins a background file search using a wildcard pattern in a specified directory, returning a search ID. Retrieve results later with fc_get_search_results or stop with fc_stop_search.
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 |
|---|---|---|---|
| directory | Yes | Start directory | |
| pattern | Yes | Search pattern with wildcards |