Skip to main content
Glama
par4987

@pired/sap-fiori-mcp-server

by par4987

List configured SAP systems

list_sap_systems
Read-onlyIdempotent

List available SAP system connections for OData calls. Returns system names for use with metadata download.

Instructions

Lists SAP system connections available for OData calls (from env vars SAP_BASE_URL/SAP_USER/SAP_PASSWORD, SAP_SYSTEMS_JSON or the systems.json file). Use the returned system name with download_odata_service_metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hintYes
countYes
systemsYes
warningsNoConfiguration problems, e.g. a systems.json that could not be parsed

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.26.1

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds useful context by naming the configuration sources (env vars and a JSON file), which goes beyond the structured annotations and helps the agent understand the data origin without contradiction.

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 sentences, with the core purpose front-loaded and the usage tip immediately after. Every word earns its place, with no redundancy or filler.

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

Completeness5/5

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

For a simple list tool with no parameters and an existing output schema (which presumably describes the returned system names), the description covers purpose, sources, and how to use the result. There is no missing information an agent needs to call this tool correctly.

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 tool has zero parameters, so the baseline is 4 per the rubric. The description does not need to explain parameters, and it doesn't. It correctly focuses on the tool's purpose and output usage, making the parameter semantics effectively handled by the absence of parameters.

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 clearly states the tool lists SAP system connections for OData calls, specifying the exact resource and its purpose. It also names a consuming tool (download_odata_service_metadata), making the tool's role unambiguous and distinguishing it from sibling listing tools like list_btp_destinations.

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 gives clear usage context: it tells the agent to use the returned system name with download_odata_service_metadata, implying this is a prerequisite step. It does not explicitly state when NOT to use it or list alternatives, so it falls short of a full 5, but the guidance is specific and actionable.

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