Skip to main content
Glama

GetPackage

Retrieve ABAP package details from SAP ABAP systems. Use startLine and maxLines to page through large package listings.

Instructions

Retrieve ABAP package details. Use startLine/maxLines to page large serialized package listings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
maxLinesNoMaximum lines to return (1-100000). Omit to request the rest; the byte cap may return fewer lines.
startLineNo1-based line number to start from (default 1). Beyond EOF returns an empty page with hasMore=false.
package_nameYesName of the ABAP package

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.0

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It reveals that output is a serialized listing that can be large and that paging may be needed, which is useful behavioral context beyond the schema. It does not mention permissions or error behavior, but for a simple retrieval this is a reasonable level of transparency.

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 main action is front-loaded, and the second sentence adds operational guidance about paging. Every word earns its place.

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 tool is simple (one required parameter, two optional paging parameters) with no output schema. The description covers the core purpose and the paging behavior. It could also state the output format more explicitly, but the schema descriptions for startLine/maxLines already cover edge cases like hasMore=false.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds meaning by clarifying that startLine/maxLines are for paging large output and that the result is a listing, which supplements the schema's parameter notes.

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

Purpose4/5

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

The description states a clear verb and resource: 'Retrieve ABAP package details.' It is distinct from the many sibling 'Get*' tools by naming the specific object type. However, it does not explicitly differentiate itself from those siblings beyond the object name, and 'details' is somewhat vague.

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 description gives usage guidance for paging ('Use startLine/maxLines to page large serialized package listings.') but does not state when to choose this tool over alternatives like GetTransaction or GetClass. The usage context is implied by the sibling structure rather than explicitly explained.

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