fuzzy_search
Find files with similar names using fuzzy matching, handling typos or partial matches to locate files quickly in the AI FileSystem MCP server.
Instructions
Search for files using fuzzy matching algorithm. Finds files with similar names even with typos or partial matches
Input Schema
TableJSON 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) |