Skip to main content
Glama
sbergeron42

gdb-multiarch-mcp

by sbergeron42

gdb_continue

Resume program execution in Nintendo Switch debugging until reaching the next breakpoint or program completion. Use when debugging is paused.

Instructions

Continue execution until next breakpoint or completion. Only use when program is PAUSED.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The continue_execution method in GDBSession sends the -exec-continue command to GDB, which resumes execution of the debugged program.
    def continue_execution(self) -> dict[str, Any]:
        """
        Continue execution of the program.
    
        Waits for the program to stop (at a breakpoint, signal, or exit) before
        returning. The (gdb) prompt indicates GDB is ready for subsequent commands.
    
        Returns:
            Dict with status and execution result
        """
        return self.execute_command("-exec-continue")
  • The 'gdb_continue' tool is defined here for the MCP server.
    Tool(
        name="gdb_continue",
        description="Continue execution until next breakpoint or completion. Only use when program is PAUSED.",
        inputSchema=NO_ARGS_SCHEMA,
    ),
  • The tool handler for 'gdb_continue' calls session.continue_execution().
    elif name == "gdb_continue":
        result = session.continue_execution()

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