Skip to main content
Glama

abap_transport_release

Read-onlyIdempotent

Release one CTS transport request in SAP; irreversible. Requires abapsmith configuration for writes and transport releases; otherwise it refuses and sends nothing.

Instructions

Release one CTS transport request — irreversible. LOCKED on this server: ABAP_ALLOW_WRITE does not enable writes, and ABAP_MODE is not set, so that variable is what decides it. ABAP_ALLOW_TRANSPORT_RELEASE does not enable releasing a transport request, and ABAP_MODE is not set, so that variable is what decides it. Set ABAP_ALLOW_WRITE=true (ABAP_ALLOW_PACKAGES is optional — it narrows the default, which is every package). Set ABAP_ALLOW_TRANSPORT_RELEASE=true. Calling it returns a refusal and sends nothing to the SAP system.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.6

TDQS

B3.1/5.0
Behavior2/5

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

The description adds genuinely useful behavioral context beyond the annotations: the tool is locked on this server, will return a refusal, and sends nothing to SAP. But this collides with the annotations, which declare readOnlyHint=true and destructiveHint=false while the description headlines the operation as an irreversible release — so the safety profile an agent reads from structured data conflicts with the stated nature of the action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded, but the middle of the description is near-duplicated boilerplate: two consecutive sentences with identical structure explaining that an env var does not enable the action and that ABAP_MODE is unset and "decides it." The repetition wastes space and makes the actual gating logic harder to parse.

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

Completeness3/5

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

For a zero-parameter tool with no output schema, the description covers the critical fact that the tool is disabled and will refuse. It nonetheless leaves the agent unsure what the call returns when the gates are enabled, and the contradictory framing of the action's safety leaves the operational picture incomplete.

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?

The input schema has zero parameters, so the baseline is 4 and there is nothing for the description to disambiguate. The env-var names it mentions (ABAP_ALLOW_WRITE, ABAP_ALLOW_TRANSPORT_RELEASE, ABAP_ALLOW_PACKAGES) are server configuration, not call parameters, so they add no parameter semantics.

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 opening sentence gives a specific verb and resource — "Release one CTS transport request — irreversible" — which clearly separates it from siblings like abap_transport or abap_write. The remainder of the description muddies this by explaining that the operation is actually locked out, but the nominal purpose is unambiguous.

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 does convey the gating condition for use (ABAP_ALLOW_WRITE=true and ABAP_ALLOW_TRANSPORT_RELEASE=true plus ABAP_MODE) and warns that calling it as-is yields a refusal. However, it never states when an agent should prefer this over the sibling abap_transport, nor what the agent should do instead in the locked state.

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