search_files
Find files containing specific text by entering search queries to locate relevant documents and content across your file system.
Instructions
Search for files containing specific text
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The text to search for |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The text to search for",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}