fast_search_files
Search for files in a directory by name or content using regex patterns, with auto-chunking, context lines, and line numbers to find matches quickly.
Instructions
Searches for files (by name/content) - supports auto-chunking, regex, context, and line numbers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Directory to search in | |
| pattern | Yes | Search pattern (regex supported) | |
| content_search | No | Search file content | |
| case_sensitive | No | Case-sensitive search | |
| max_results | No | Maximum number of results | |
| context_lines | No | Number of context lines around a match | |
| file_pattern | No | Filename filter pattern (e.g., *.js, *.txt) | |
| include_binary | No | Include binary files in search | |
| continuation_token | No | Continuation token from a previous call | |
| auto_chunk | No | Enable auto-chunking |