Skip to main content
Glama
adam0thman

sapgui-mcp

by adam0thman

sap_execute

Execute SAP tasks through a cost-routing fallback chain: API, recorded scripts, WebGUI, then vision-based automation, with dry-run and production safeguards.

Instructions

Run an SAP task via the cheapest capable tier.

Args: task: logical task name (catalog key), e.g. "create_sales_order". system: creds index id of the target system. params: task parameters. env: environment of the system (dev|qas|prd|sbx); drives the prod guard. constraints: e.g. {"must_stay_in_live_session": true, "allow_prod": false}. mutating: whether this task changes SAP state. dry_run: validate/preview without committing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envNounknown
taskYes
paramsNo
systemYes
dry_runNo
mutatingNo
constraintsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/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 of behavioral disclosure. It explicitly covers mutation via the 'mutating' flag, non-committing preview via 'dry_run', and a production guard driven by 'env'. It does not detail error behavior or credentials, but the most safety-relevant behaviors are described.

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 clear summary sentence followed by a compact line-per-parameter Args block. It contains no filler, tautology, or redundant restatement of the schema, and the most important behavioral flags are easy to scan.

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?

All seven parameters are documented, required parameters are identifiable, and an output schema exists so return-value documentation is unnecessary. Remaining gaps are auxiliary details such as the available task catalog, exact prod-guard behavior, and error handling, which are not essential for correct invocation.

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

Parameters5/5

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

Schema description coverage is 0%, and the schema only provides names, types, and defaults. The description compensates fully by explaining each parameter's meaning, including the task catalog-key concept, system as a creds index, env allowed values, constraints example, and the semantics of mutating and dry_run.

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 clearly states the action ('Run an SAP task') and resource ('SAP task' catalog key) with a routing hint about using the cheapest capable tier. It does not distinguish from siblings because none are provided, so it misses the top score only on the sibling-differentiation criterion.

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?

Usage is implied by the purpose statement: use this to run SAP tasks. However, there is no explicit guidance about prerequisites, when not to use it, or how it compares to alternatives. Since no sibling tools exist, the absence of alternative routing is less damaging, but the description still does not spell out usage conditions.

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