Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Tool Calls (IPC)

The server may request the client to execute radare2 commands.

Server → Client (notification):

{
  jsonrpc: 2.0,
  method: tool_call,
  params: {
    id: 1,
    name: r2cmd,
    args: {command: pdf @ main}
  }
}

Client → Server (notification):

{
  jsonrpc: 2.0,
  method: tool_result,
  params: {
    id: 1,
    result: ... disassembly output ...
  }
}