Skip to main content
Glama
par4987

@pired/sap-fiori-mcp-server

by par4987

Get UI5 framework version info

get_version_info
Read-onlyIdempotent

Retrieves the latest UI5 version from CDN and the local project's configured version, enabling version mismatch checks.

Instructions

Retrieves UI5 framework version information: latest version from the CDN (sap-ui-version.json) plus the local project's configured version.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectPathNoOptional local project to read its minUI5Version/ui5.yaml version

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
latestYes
sourceYes
librariesNo
distributionYes
localProjectVersionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.26.1

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about the specific data sources (CDN sap-ui-version.json and local project configuration), which is useful beyond the annotations. No contradictions found.

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, efficient sentence that front-loads the main purpose and includes the two key sources. There is no extraneous information; every word contributes to understanding the tool's function.

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?

Given the tool's simplicity (one optional parameter, read-only, output schema present), the description provides sufficient context about what the tool retrieves. The output schema covers return value structure, and the description clarifies the data sources. The only gap is usage guidance, which is not critical for a simple read tool.

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?

Schema description coverage is 100%, so the parameter projectPath is fully documented in the schema. The description reiterates the local project aspect but does not add significant new meaning beyond the schema's description. The baseline of 3 applies since the schema carries the semantic load.

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 verb 'Retrieves' and the resource 'UI5 framework version information', specifying the two sources (CDN and local project). This distinguishes it from siblings like get_project_info or get_guidelines, which serve different purposes.

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 not provide any guidance on when to use this tool versus alternatives such as get_project_info or get_guidelines. There is no mention of exclusions, prerequisites, or conditions that would lead an agent to choose this tool over others.

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