read_memory
Dump memory from a debugged process at a given hex address. Returns a hex and ASCII dump to inspect buffers, structures, or code.
Instructions
Read memory and return as hex+ASCII dump.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Bytes to read. 16-64 small structs, 256 buffer peek, 4096 full page. | |
| address | Yes | Memory address as hex string. ALWAYS use '0x' prefix. Examples: '0x401000', '0x7FFE0308', '0x00007FF7C0001234'. WARNING: without '0x' prefix, '401000' is treated as decimal 401000, not hex 0x401000. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Structured result data (varies by tool) | |
| error | No | ||
| details | No | Detailed text breakdown | |
| success | Yes | ||
| summary | Yes | One-line human-readable result | |
| suggested_next_tools | No | Tools recommended to call next based on this result |