Skip to main content
Glama
Maherd18

sap-mcp-server

by Maherd18

sap_release_transport

Release a transport request in SAP by obtaining approval from a designated SAP user, enforcing separation of duties between developer and approver.

Instructions

Releases a transport request. Requires human approval and is subject to separation of duties.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
approverNoSAP user who approves the release. Must not be the developer.
transportYesTransport request number.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.7/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 full behavioral disclosure burden. It explicitly discloses that the action requires human approval and is subject to separation of duties, which are critical authorization and workflow traits. It does not cover reversibility, failure modes, or result shape, but the most important behavioral characteristics are present.

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 two short sentences, front-loaded with the action verb, and every sentence earns its place: the first states the core operation, the second states the critical human-approval constraint. There is no filler or redundancy.

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 mutation tool with no annotations and no output schema, the description leaves meaningful gaps: it does not mention the impact of omitting the optional approver, whether the call is asynchronous, or what response/status to expect. The approval workflow is disclosed, but an agent lacks enough detail to handle the tool's unusual interaction pattern confidently.

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?

Input schema coverage is 100%, so the baseline is 3. The description adds no parameter-specific detail beyond the schema; the separation-of-duties statement echoes the approver schema description rather than expanding on it. This is acceptable because both parameters are already fully documented in the schema.

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 ('Releases') and resource ('transport request'), clearly distinguishing it from siblings like sap_list_transports (listing), sap_write_source (writing), and sap_activate (activation). An agent can tell exactly what this tool does without opening any schema.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus alternatives, and it does not name sibling tools or exclusion scenarios. The human-approval requirement is a workflow prerequisite, not usage direction, so an agent gets no help choosing between release and related SAP operations.

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