list_breakpoints
View all currently active breakpoints in a process for debugging and reverse engineering during game hacking sessions.
Instructions
List all active breakpoints.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler function for the 'list_breakpoints' tool. It returns a dictionary containing the count of active breakpoints and a list of their addresses from the global Frida session state.@mcp.tool() def list_breakpoints() -> Dict[str, Any]: """List all active breakpoints.""" return {"count": len(_session.breakpoints), "breakpoints": list(_session.breakpoints.keys())}