Skip to main content
Glama
Hollway

mcp-abap-abap-adt-api

by Hollway

debuggerSetBreakpoints

Set breakpoints on specific source lines or statements for an upcoming ABAP debug session. These persist per user until deleted, so execution stops for anyone using that user.

Instructions

Set breakpoints on lines of a source, or on a statement, for the debug session that follows. They belong to the user and survive until deleted, so they will also stop a colleague running the same code with your user. Set them BEFORE debuggerListen; the ids that come back are what deletes them again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userYesThe user.
ideIdYesThe IDE ID.
scopeNoThe debugger scope.
clientIdYesThe client ID.
terminalIdYesThe terminal ID.
breakpointsYesAn array of breakpoints.
deactivatedNoWhether to deactivate the breakpoints.
syncScupeUrlNoThe URL for scope synchronization.
debuggingModeYesThe debugging mode.
systemDebuggingNoWhether to enable system debugging.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.6/5.0
Behavior5/5

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

Annotations only indicate non-read-only and non-destructive, but the description adds crucial behavioral context: breakpoints persist and affect other users running the same code. This goes beyond annotations and is essential for safe usage.

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?

Three concise sentences with no fluff: purpose first, then timing, then persistence. Every sentence adds value and the critical ordering constraint is front-loaded.

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?

For a 10-parameter tool with no output schema, the description covers purpose, timing, and side effects. It lacks explicit return-value details, but these are less critical given the schema documentation and the described id-based deletion mechanism.

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

Parameters3/5

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

Schema description coverage is 100%, so all parameters are documented. The description does not add parameter-specific details beyond schema, but it does hint at the breakpoints structure. Baseline 3 is appropriate given full schema coverage.

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's function: setting breakpoints on lines or statements for the upcoming debug session. It distinguishes itself from sibling tools like debuggerSetVariableValue and debuggerListen by focusing specifically on breakpoint creation.

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

Usage Guidelines5/5

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

Provides explicit timing guidance ('Set them BEFORE debuggerListen') and explains the lifecycle (survive until deleted, ids are used for deletion). This tells the agent when to invoke and implies when not to (e.g., when deletion is intended).

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

Deploy Server

Other Tools