search_file_content
Find specific text within Dropbox files by searching content across multiple file types including PDFs, DOCX, and text documents.
Instructions
Search for text within specific files.
Args: file_paths: List of file paths to search in query: Text to search for context_chars: Number of characters of context around matches
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_chars | No | ||
file_paths | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_chars": {
"default": 100,
"title": "Context Chars",
"type": "integer"
},
"file_paths": {
"items": {
"type": "string"
},
"title": "File Paths",
"type": "array"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"file_paths",
"query"
],
"type": "object"
}