IDA Pro MCP Server

by fdrechsler
Verified

search_text

Search for text in the binary

Input Schema

NameRequiredDescriptionDefault
caseSensitiveNoWhether the search is case sensitive (default: false)
endAddressNoEnd address for search (optional)
startAddressNoStart address for search (optional)
textYesText to search for

Input Schema (JSON Schema)

{ "properties": { "caseSensitive": { "description": "Whether the search is case sensitive (default: false)", "type": "boolean" }, "endAddress": { "description": "End address for search (optional)", "type": "string" }, "startAddress": { "description": "Start address for search (optional)", "type": "string" }, "text": { "description": "Text to search for", "type": "string" } }, "required": [ "text" ], "type": "object" }