ida_execute_script_from_file
Run a Python script from a specified file path directly within IDA Pro, enabling automation and interaction with its database via the MCP server.
Instructions
Execute a Python script from a file path in IDA Pro and return its output. The file should be accessible from IDA's process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "ExecuteScriptFromFile",
"type": "object"
}