search_files
Find files by name pattern using wildcards in specified directories to locate documents, code, or data files efficiently.
Instructions
Search for files by name pattern in a directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | Yes | The directory to search in | |
pattern | Yes | The filename pattern to search for (supports * wildcards) |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"description": "The directory to search in",
"type": "string"
},
"pattern": {
"description": "The filename pattern to search for (supports * wildcards)",
"type": "string"
}
},
"required": [
"directory",
"pattern"
],
"type": "object"
}