finder_search_files
Locate files by name within macOS using query-based search. Specify search location or default to home folder for efficient file discovery and management.
Instructions
[Finder and file operations] Search for files by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | No | Search location (default: home folder) | ~ |
query | Yes | Search term |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"default": "~",
"description": "Search location (default: home folder)",
"type": "string"
},
"query": {
"description": "Search term",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}