Skip to main content
Glama
thebtf

netcoredbg-mcp

by thebtf

continue_execution

Resumes program execution that was paused at a breakpoint, exception, or step. Blocks until the next stop event or timeout, then returns new state and reason.

Instructions

Continue program execution. Blocks until the program stops again or timeout.

State: STOPPED required. Blocks until next stop or timeout.

This tool uses the long-poll pattern: it waits for the debugger to report a stopped event (breakpoint hit, exception, step complete) before returning.

The response includes the new state, stop reason, and next_actions so you know exactly what happened and what to do next.

IMPORTANT: While waiting, the program is RUNNING — do not call get_variables or get_call_stack until this tool returns with state=stopped.

Escape hatch: see the dap-escape-hatch prompt for unwrapped DAP requests.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thread_idNo
Behavior5/5

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

The description thoroughly explains the long-poll pattern, blocking behavior, and the state changes. It adds significant context beyond the minimal annotation (openWorldHint=false), covering the response contents and the danger of calling state-reading tools during execution.

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

Conciseness4/5

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

The description is well-organized and front-loaded with key information. It is efficient but slightly verbose in the middle section.

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

Completeness4/5

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

The description covers preconditions, behavior, response, and important caveats. It does not mention timeout or error handling, but given the complexity, it is fairly complete.

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?

The schema has 0% coverage for the only parameter (thread_id). The description does not explain what thread_id means or how to use it, leaving the agent with no guidance on this optional parameter.

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 clearly states the tool continues program execution and blocks until the program stops again. It distinguishes itself from stepping tools (step_into, step_over) which perform single steps, and from other execution control tools like restart_debug or stop_debug.

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 specifies the precondition 'State: STOPPED required' and warns against calling get_variables or get_call_stack while waiting. It provides guidance on when to use (when resuming execution) and what not to do, but does not explicitly compare with alternatives or mention when to avoid.

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

Install Server

Other Tools

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/thebtf/netcoredbg-mcp'

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