Skip to main content
Glama

List ABAP Debugger Breakpoints

sap_list_breakpoints
Read-onlyIdempotent

List external ADT breakpoints set by this MCP server, returning IDs, lines, conditions, and enabled status. Verify active debugging breakpoints before deletion.

Instructions

List the external (ADT) breakpoints set through this MCP server.

IMPORTANT — this is a client-side list. SAP offers no enumeration for external breakpoints: GET /sap/bc/adt/debugger/breakpoints answers HTTP 200 with an empty body even while breakpoints exist, and Eclipse works the same way (client-side truth, full-set sync on write). So this returns what this server has set since it started; breakpoints set from Eclipse, or by this server before a restart, are not listed. To cross-check the server side, run sap_sql_query on ABDBG_EXTDBPS (key RQ_USER).

Returns (json): { user, client, count, breakpoints: [{id, clientId, uri, line, objectName, condition, enabled}], note }. 'id' is the structured id SAP assigned (KIND=…LINE_NR=…), used by sap_delete_breakpoints.

Examples:

  • "Show my current breakpoints" -> (no args).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_formatNoOutput format: 'markdown' (human-readable, default) or 'json' (structured).markdown
Install Server

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses important behavioral traits beyond the readOnly/idempotent annotations: the list is client-side, SAP's own endpoint returns an empty body, Eclipse behaves the same way, and restart clears the server's local knowledge. It also explains the returned structure and gives a concrete cross-check method, providing rich behavioral context.

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?

The description is front-loaded with the core purpose and the critical 'IMPORTANT' caveat, then gives a compact return schema and a concrete example. Every paragraph earns its place, including the HTTP endpoint detail that supports the client-side claim. The structure is well organized and not redundant.

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

Completeness5/5

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

Despite having no output schema, the description fully documents the return shape, field meanings, the special 'id' field used by sap_delete_breakpoints, and the limitation regarding restart and Eclipse-set breakpoints. For a read-only list tool with this complexity, nothing an agent needs to invoke it correctly or interpret its output is missing.

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%, with the single optional response_format parameter clearly documented in the schema. The description adds an example of calling with no arguments and shows the JSON return shape, but it does not need to further explain the parameter semantics because the schema already fully covers them. Baseline 3 is appropriate.

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 a specific verb ('List') and resource ('external (ADT) breakpoints set through this MCP server'), which distinguishes it from related tools like sap_set_breakpoint and sap_delete_breakpoints. It also clarifies the scope as client-side and server-local, leaving no ambiguity about what is being listed.

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?

The description is explicit about when this tool is appropriate: it lists only breakpoints set by this server since startup, not Eclipse breakpoints or pre-restart breakpoints. It even gives an alternative approach (sap_sql_query on ABDBG_EXTDBPS) for cross-checking the server side, making the usage boundaries very clear.

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

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/appmaster3000/sap-abap-mcp-server'

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