Skip to main content
Glama
sbergeron42

gdb-multiarch-mcp

by sbergeron42

gdb_enable_breakpoint

Activate a paused breakpoint in gdb-multiarch to resume debugging Nintendo Switch executables. Specify the breakpoint number to continue execution monitoring.

Instructions

Enable a breakpoint by number.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
numberYesBreakpoint number

Implementation Reference

  • The enable_breakpoint method in the GDBSession class implements the logic for enabling a GDB breakpoint by sending the '-break-enable' MI command.
    def enable_breakpoint(self, number: int) -> dict[str, Any]:
        """
        Enable a breakpoint by its number.
    
        Args:
            number: Breakpoint number to enable
    
        Returns:
            Dict with status
        """
        result = self.execute_command(f"-break-enable {number}")
    
        if result["status"] == "error":
            return result
    
        return {"status": "success", "message": f"Breakpoint {number} enabled"}

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbergeron42/gdb-multiarch-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server