Skip to main content
Glama
fr0ster
by fr0ster

GetIncludesList

Recursively retrieves every include file nested within an ABAP program or include, clarifying the full structure.

Instructions

[read-only] Recursively discover and list ALL include files within an ABAP program or include.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutNo[read-only] Timeout in ms for each ADT request.
detailedNo[read-only] If true, returns structured JSON with metadata and raw XML.
object_nameYesName of the ABAP program or include
object_typeYes[read-only] ADT object type of the parent. Only these four values are supported: 'PROG/P' (program), 'PROG/I' (include), 'FUGR' (function group), 'CLAS/OC' (class). Any other value is rejected by the schema.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv9.0.0
  2. Removedv8.12.1
  3. Changed1 schema field changedv6.11.0
    • changedInput schema / properties / object_type / description
      Previous value: -"[read-only] ADT object type (e.g. PROG/P, PROG/I, FUGR, CLAS/OC)"New value: +"[read-only] ADT object type of the parent. Only these four values are supported: 'PROG/P' (program), 'PROG/I' (include), 'FUGR' (function group), 'CLAS/OC' (class). Any other value is rejected by the schema."
  4. First observed

TDQS

A3.6/5.0
Behavior3/5

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

The description discloses that the operation is read-only and recursive, which are behavioral traits not covered by annotations (none are provided). However, it does not describe the output format, pagination, or side effects beyond listing, and the detailed parameter's behavior is only documented in the schema, not the description. Given the lack of annotations, the description carries the burden and only partially fulfills it.

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 a single, efficient sentence that front-loads the read-only hint and core recursive behavior. There is no redundancy or filler; every word contributes to the purpose.

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 tool has no output schema, so the description should explain what the return value looks like. It only says 'list ALL include files' without specifying whether it returns names, full metadata, or how the 'detailed' parameter changes the response. The schema covers parameters but not return structure, leaving an agent uncertain about the expected output. For a tool with four parameters and no output schema, this is a significant gap.

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 four parameters are already documented with descriptions, including the detailed flag and object_type enum. The tool description adds no extra meaning about parameters beyond what the schema provides, so a baseline of 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 states a specific verb (discover and list), a clear resource (all include files within an ABAP program or include), and the recursive scope. It distinguishes itself from generic listing tools like GetStructuresList by focusing on includes, making the purpose unmistakable.

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

Usage Guidelines3/5

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

The usage context is implied: an agent would use this when they need to enumerate include files for a given ABAP object. However, there is no explicit guidance on when not to use it or which alternative sibling tools (e.g., GetStructuresList, GetPackageContents) might be more appropriate for different scenarios.

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