Skip to main content
Glama
sbergeron42

gdb-multiarch-mcp

by sbergeron42

gdb_next

Step over to the next line in Nintendo Switch debugging sessions using gdb-multiarch with Yuzu or hardware GDB stubs.

Instructions

Step over to the next line.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The `next` method implementation within `GDBSession` class, which sends the `-exec-next` GDB/MI command.
    def next(self) -> dict[str, Any]:
        """
        Step over (next source line, not entering functions).
    
        Waits for the step to complete before returning. The (gdb) prompt indicates
        GDB is ready for subsequent commands.
    
        Returns:
            Dict with status and execution result
        """
        return self.execute_command("-exec-next")
  • The tool handler logic in the server that dispatches the "gdb_next" request to `session.next()`.
    elif name == "gdb_next":
        result = session.next()

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