@Tool(description = "Search for text within files in the project. Example: searchInFiles("TODO", "**/*.kt")")
fun searchTextInFiles(@McpToolParam(description = "The text to search for within file contents")query: String, @McpToolParam(description = "The glob pattern to filter files (e.g., "**/*.kt")")glob: String = "**/*", @McpToolParam(description = "Number of surrounding lines to show for each match (default = 0)")padding: Int = 0): FileSearchResponse