fuzzy_search
Find files with similar names even with typos using fuzzy matching. Specify a pattern and optional directory to locate approximate matches.
Instructions
Search for files using fuzzy matching algorithm. Finds files with similar names even with typos or partial matches
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | Search pattern for fuzzy matching. Examples: "test" finds "testfile.txt", "src/util" finds "src/utilities.js" | |
| directory | No | Directory to search in (absolute or relative path). Default: current directory (".") | . |
| threshold | No | Similarity threshold (0-1). Lower = more matches. 0.9 = high similarity, 0.5 = moderate, 0.3 = loose matching (default) | |
| limit | No | Maximum number of results to return (1-1000). Higher values may impact performance | |
| extensions | No | Filter results by file extensions. Examples: [".js", ".ts"] or ["js", "ts"] (dots optional) |