Skip to main content
Glama

abap_fpm_read

Read-onlyIdempotent

Reads SAP FPM/FBI screen configurations; each call deploys a temporary bridge class and is locked until ABAP_ALLOW_WRITE=true, otherwise it refuses and sends nothing.

Instructions

Read SAP FPM/FBI screen configurations; every call deploys a throwaway bridge class. LOCKED on this server: ABAP_ALLOW_WRITE does not enable writes, 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). 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

C2.9/5.0
Behavior3/5

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

Annotations already cover the safety profile (readOnly, idempotent, non-destructive, closed-world). The description does add genuinely non-obvious behavior: a throwaway bridge class is deployed on every call, and on this server the call returns a refusal without touching SAP. Those additions are valuable, but the middle sentences about ABAP_ALLOW_WRITE/ABAP_MODE are self-contradictory and reduce trust in the rest.

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?

Purpose is front-loaded, which is good, but the body is rambling and internally contradictory ("ABAP_ALLOW_WRITE does not enable writes" followed by "Set ABAP_ALLOW_WRITE=true"). Sentences do not earn their place; the lock explanation could be one clear line.

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, no-output-schema tool the definition is nearly complete: it explains that the call returns a refusal and sends nothing to SAP, which is the key operational fact. But the garbled lock/env-variable narrative leaves an agent unsure whether the tool can be invoked at all, and no sibling alternative is named.

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?

There are zero parameters, so the schema is complete by default (baseline 4). However, the description introduces ABAP_ALLOW_WRITE and ABAP_ALLOW_PACKAGES in an imperative tone ("Set ...=true") that could be mistaken for invocation parameters rather than server environment configuration. That ambiguity costs a point.

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 clause gives a specific verb and resource: "Read SAP FPM/FBI screen configurations." That is enough to distinguish it from generic siblings like abap_read or abap_search. However, the remaining four sentences are consumed by lock-state and environment-variable talk that obscures rather than sharpens the purpose.

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 does signal that the tool is LOCKED and that "Calling it returns a refusal and sends nothing to the SAP system," which is a when-not-to-use hint. But it immediately undercuts itself with "Set ABAP_ALLOW_WRITE=true," leaving the agent unable to tell whether the tool is usable. No alternatives or routing guidance to siblings is given.

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