Skip to main content
Glama

continue_execution

Resume a paused debugging session by continuing, stepping, or finishing execution modes such as next, stepi, or until. Returns instantly; use wait_for_stop for the next breakpoint or stop event.

Instructions

Resume the inferior: continue / step / next / stepi / nexti / finish / until. Returns immediately; use wait_for_stop to wait for the next stop event, or rely on the async stop notification.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNocontinue
session_idNo
until_addrNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It usefully discloses that the call is asynchronous in effect ('Returns immediately') and that stopping is observed elsewhere. However, it does not mention failure modes, session requirements, or side effects beyond resuming execution.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The core action and mode list are front-loaded, and the important return-timing behavior is stated immediately after.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The definition is not complete enough for an agent to call it correctly in all cases. It omits parameter semantics, especially 'until_addr', does not clarify session selection when 'session_id' is null, and gives no output or error expectations. The presence of wait_for_stop helps, but the gaps are material for a debugger control tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must explain the parameters. It implicitly explains 'mode' by listing possible values, but it does not explain the semantics of 'session_id' or 'until_addr', including when 'until_addr' applies or what format it expects.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Resume') and resource ('the inferior'), then enumerates the accepted command modes: continue, step, next, stepi, nexti, finish, until. This clearly distinguishes it from siblings like interrupt, wait_for_stop, and get_stop_reason.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says the tool returns immediately and directs the agent to wait_for_stop for the next stop event or to rely on async stop notification. This gives clear when-to-use context relative to wait_for_stop, though it does not mention exclusions or alternatives like execute_command.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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/Mistyovo/gdb-mcp'

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