search_in_files
Search for specific patterns within files of specified extensions in a project directory, aiding in reverse engineering Android applications with Apktool MCP Server.
Instructions
Search for a pattern in files specified extensions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_extensions | No | ||
max_results | No | ||
project_dir | Yes | ||
search_pattern | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_extensions": {
"default": [
".smali",
".xml"
],
"items": {
"type": "string"
},
"title": "File Extensions",
"type": "array"
},
"max_results": {
"default": 100,
"title": "Max Results",
"type": "integer"
},
"project_dir": {
"title": "Project Dir",
"type": "string"
},
"search_pattern": {
"title": "Search Pattern",
"type": "string"
}
},
"required": [
"project_dir",
"search_pattern"
],
"title": "search_in_filesArguments",
"type": "object"
}