decompile_function
Extract and analyze decompiled code from a specific function address to simplify reverse engineering using IDA Pro MCP automation.
Instructions
Decompile a function at the given address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address of the function to decompile |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address of the function to decompile",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "decompile_functionArguments",
"type": "object"
}