ida-mcp-server

ida_rename_local_variable

Rename a local variable in an IDA database function by specifying the function name, old variable name, and new variable name for improved code clarity and analysis.

Instructions

Rename a local variable within a function in the IDA database

Input Schema

NameRequiredDescriptionDefault
function_nameYes
new_nameYes
old_nameYes

Input Schema (JSON Schema)

{ "properties": { "function_name": { "title": "Function Name", "type": "string" }, "new_name": { "title": "New Name", "type": "string" }, "old_name": { "title": "Old Name", "type": "string" } }, "required": [ "function_name", "old_name", "new_name" ], "title": "RenameLocalVariable", "type": "object" }
ID: fpfnwgj5pa