Skip to main content
Glama

CheckReleaseState

Check the SAP release classification of a CDS view to identify its API state, successor, and extensibility before planning remediation.

Instructions

Check the SAP release classification (Level A/B/C/D) of a CDS view. Returns the API state, official successor, base view, and extensibility information. Use this before remediating to understand what needs to change.

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.
cds_view_nameYesName of the CDS view to check (e.g. I_CostElement, I_GLAccount)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the kind of information returned and its pre-remediation role, but it does not explicitly state that the operation is read-only, nor does it describe pagination behavior or any failure/error conditions. This is adequate but has clear gaps.

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 fluff: the first states the core purpose and key outputs, the second gives actionable guidance on when to use the tool. The most important information 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 relatively simple inspection tool, the description covers purpose, when to use it, and the principal return values. It does not explain how maxLines/startLine affect a call, but the schema already documents those parameters, and the absence of an output schema is partially compensated by the mention of returned fields.

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?

Parameter schema coverage is 100% and the schema descriptions for maxLines, startLine, and cds_view_name are already clear and detailed. The description mentions the CDS view name naturally but adds no substantive semantics beyond the schema, so the baseline of 3 applies.

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 names a specific verb ('Check'), a specific resource ('SAP release classification of a CDS view'), and enumerates the key returned fields (API state, successor, base view, extensibility). This clearly distinguishes it from sibling tools like GetCDSView and RemediateObject.

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?

The description explicitly states when to use it: 'Use this before remediating to understand what needs to change.' This gives clear contextual guidance, though it does not name exclusions or compare itself to alternative tools.

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