convert_number
Transform numerical values between decimal and hexadecimal formats within IDA Pro MCP, aiding in reverse engineering tasks by providing flexible number representation conversions.
Instructions
Convert a number (decimal, hexadecimal) to different representations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
size | Yes | Size of the variable in bytes | |
text | Yes | Textual representation of the number to convert |
Input Schema (JSON Schema)
{
"properties": {
"size": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Size of the variable in bytes",
"title": "Size"
},
"text": {
"description": "Textual representation of the number to convert",
"title": "Text",
"type": "string"
}
},
"required": [
"text",
"size"
],
"title": "convert_numberArguments",
"type": "object"
}