Other formats agents might prefer:
markdownjsonllms.txt

Agent? You probably want markdown or json, or Pod over MCP.

Reported issues for fiori-mcp-server

Pod holds 18 of 29 problems reported by people outside the maintainer team. Issues filed by the project's own owners, members and collaborators are excluded entirely — a maintainer's release checklist is not a warning to a prospective user.

Back to fiori-mcp-server.

Most discussed

FEATURE - Using preview-middleware with cds-launchpad-plugin

As a Developer, I want to use the preview-middleware to show the UI5 apps in a launchpad, so that I can see all UI5 Apps in a automatically created FLP.

Description

In my CAP projects, i use cap-launchpad-plugin to create a FLP with all UI5 Applications i defined in the CAP Project, without create manually a FLP html page. A similar approach like [preview-middleware](https://github.com/SAP/open-ux-tools/tree/main/

Read the thread · 2024-06-28 · closed · outside contributor · 7 comments

[fiori-mcp-server] DXT extension crashes silently in Claude Desktop after initialize (Electron-bundled Node incompatibility)

Summary

When @sap-ux/fiori-mcp-server is installed as a Claude Desktop .dxt extension, the server process is spawned by Claude Desktop's built-in (Electron-embedded) Node runtime. The server starts, accepts the JSON-RPC initialize message, then exits silently ~300–700 ms later with no stderr output. Claude Desktop logs only:

Server transport closed unexpectedly, this is likely due to the process exiting early.

Running the same dist/index.js against a real Node v25.8.2 (or an

Read the thread · 2026-04-28 · open · external user · 2 comments

Add MCP tool annotations to fiori-mcp-server

Summary

The @sap-ux/fiori-mcp-server package is missing MCP tool annotations on its tool definitions. Tool annotations help AI assistants understand tool behavior and make better decisions about when and how to use them.

Current State

In packages/fiori-mcp-server/src/tools/index.ts, the tools are defined without annotations:

export const tools = [
    {
        name: 'search_docs',
  

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4030) · 2026-01-20 · closed · external user · 2 comments

### BUG - MCP Server - docs tool does not work as intened

<!-- 🔍 Please search existing issues to avoid creating duplicates. -->

### Related Feature

_issue number_

### Description

The `search_docs` tool is returning broken results.

### Steps to Reproduce

1. install `@sap-ux/fiori-mcp-server@latest` globally
2. Connect using MCP Inspector
3. Call `search_docs`:

```json
{
  "method": "tools/call",
  "params": {
    "name": "search_docs",
    "arguments": {
      "query": "CDS",
      "maxResults": 25
    }
  }
}
  1. Results are all broken frag

Read the thread · 2025-11-24 · closed · outside contributor · 2 comments

BUG - ⚠ Large MCP response (~25.1k tokens), this can fill up context quickly

markdown# search_docs tool returns excessively large responses that quickly consume context window

Description

When using the search_docs tool from the fiori-mcp server, responses can be extremely large (25k+ tokens), which rapidly fills the context window and impacts the effectiveness of the MCP integration.

Steps to Reproduce

  1. Use the search_docs tool with a specific query
  2. Observe the token count in the response
  3. Note how quickly the context window fills with subsequent

Read the thread · 2025-11-23 · open · external user · 2 comments

How to enable MCP server in SAP BAS?

In local VSCode Cline client the mcp server works fine.

In SAP BAS (Business Application Studio) I am getting MCP error -32000: Connection closed. The configuration is the same as in local VSCode and I tried both npm and npx installation methods

The same issue with @ui5/mcp-server: https://github.com/UI5/mcp-server/issues/81

How to enable it in BAS?

Read the thread · 2025-10-14 · closed · 2 comments

BUG - frameworkURL is ignored and default is used instead

Related Feature

Feature request: issue number

Description

https://github.com/SAP/open-ux-tools/blob/main/packages/ui5-application-writer/src/data/defaults.ts#L74

merged.frameworkUrl =
        ui5.frameworkUrl || merged.framework === 'SAPUI5' ? UI5_DEFAULT.SAPUI5_CDN : UI5_DEFAULT.OPENUI5_CDN;

I suppose the intension was for ui5.frameworkUrl to be assigned to merged.frameworkUrl

Read the thread · 2022-01-26 · closed · outside contributor · 2 comments

BUG - fiori-mcp download_odata_service_metadata: clarify appPath pre-condition to prevent LLMs from passing a non-existent folder

Related Feature

Feature request: N/A — this is a bug report on the existing download_odata_service_metadata tool exposed by @sap-ux/fiori-mcp-server.

Description

The MCP tool download_odata_service_metadata (exposed by @sap-ux/fiori-mcp-server) requires its appPath parameter to point to an already-existing directory into which metadata.xml will be written. This pre-condition is not documented in the tool's input schema description, so LLMs consuming the MCP ser

Read the thread · 2026-07-23 · open · 1 comment

Most recent

FEATURE - Enable GitHub Copilot marketplace distribution for @sap-ux/fiori-mcp-server

As a developer using GitHub Copilot as my coding agent, I want to install and use the sap-fiori-mcp-server plugin (MCP server + skills) via the Awesome Copilot marketplace, so that I can generate and modify SAP Fiori elements applications with the same skills that are already available for Claude Code users.

Description

Today @sap-ux/fiori-mcp-server is distributed as a Claude Code plugin (via .claude-plugin/plugin.json) and can be installed from the Claude Plugin H

Read the thread · 2026-07-23 · open · 1 comment

[fiori-mcp-server] CLI help/version flags print no output

Summary

The published @sap-ux/fiori-mcp-server binary silently ignores top-level CLI information flags.

fiori-mcp --help, fiori-mcp --version, and an invalid flag all exit with status 0 and print no stdout/stderr. This makes it hard for users and MCP client setup scripts to verify the installed version, discover usage, or detect a typo before configuring the server.

Reproduction

Tested on Windows with Node.js 24.16.0 and @sap-ux/fiori-mcp-server@1.0.3.

mkdir fior

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4785) · 2026-06-07 · open · external user · 0 comments

### FEATURE - Wrap `fetch-service-metadata` errors in the structured response shape

`generate-fiori-ui-application`'s handler wraps its body in try/catch and returns a structured `status: "Error"`. `fetch-service-metadata` doesn't, so any inner throw (typically a missing entry in `@sap-ux/store`) bubbles into the MCP framework's generic error wrapper and the actual message never reaches the caller. Small consistency fix; big DX win for first-time and non-VS-Code users.

### Technical Design

Wrap the `executeFunctionality` body of `fetch-service-metadata` in try/catch and mirro

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4652) · 2026-05-11 · open · outside contributor · 1 comment

### BUG - Missing dependency declaration (Fiori MCP Server)

### Description
I tried out the "Fiori MCP Server" and it is really great and cool to use. But I discovered the following issue:

If you add the MCP server to Claude Code via `claude mcp add fiori --transport stdio -- npx -y @sap-ux/fiori-mcp-server@0.6.47 fiori-mcp`, Claude Code is not able to start the MCP server and connect to it.
After some debugging the issue was, that the dependency `apache-arrow` (https://www.npmjs.com/package/apache-arrow) is required on my machine, which is not defined 

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4547) · 2026-04-14 · closed · external user · 0 comments

### FEATURE - Add controller extension and fragment generation through MCP

<!-- 🔎 Please search existing issues to avoid creating duplicates. -->
<!-- Please describe the feature you'd like by filling the template below -->

_As a **developer**,
I want to **tell a model to create an ADP from a system and application**,
so that I **can generate a fragment and controller extension files**_

### Description
TBD...

### Acceptance Criteria
GivenWhenThen format (https://martinfowler.com/bliki/GivenWhenThen.html)

**Given** I have a client where I can use llm models and a fi

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4096) · 2026-02-03 · closed · outside contributor · 0 comments

### FEATURE - Add `list-systems` functionality to fiori-mcp server

<!-- 🔎 Please search existing issues to avoid creating duplicates. -->
<!-- Please describe the feature you'd like by filling the template below -->

_As a **developer**,
I want to **ask a model to list available SAP Systems**,
so that I **then choose one to work with**_

### Description

Allowing the modal to see the systems and display them for a user to then perform other actions with that system is a good approach for a better UX when working with AI-capable tools.

### Acceptance Criteria
G

[Read the thread](https://github.com/SAP/open-ux-tools/issues/4084) · 2026-01-30 · closed · outside contributor · 0 comments

### BUG - MCP Server - Server doesn't start

<!-- 🔍 Please search existing issues to avoid creating duplicates. -->

### Related Feature
Feature request: _issue number_

### Description
The MCP Server fiori-mcp doesn't start

### Steps to Reproduce
Steps to reproduce the behavior:
1. Install npm install -g @sap-ux/fiori-mcp-server
2. Put the server "fiori-mcp": {
      "type": "stdio",
      "timeout": 600,
      "command": "fiori-mcp"
    } in mcp.json (VSCode)
3. Start server
4. See error

### Expected results

### Actual results
025-

[Read the thread](https://github.com/SAP/open-ux-tools/issues/3883) · 2025-11-28 · closed · external user · 1 comment

### FEATURE - `@sap-ux/odata-service-inquirer`: Add prompt for value help metadata download

### Description

internal ref: #34666

Add a prompt to allow the downloading of external service metadata (value help and code lists)

### Technical Design
_What modules need to be created or enhanced?_ 
_How would the functionality be exposed and how can it be consumed?_

### Acceptance Criteria
GivenWhenThen format (https://martinfowler.com/bliki/GivenWhenThen.html)

**Given** I have a ...
**when** I execute ...
**then** ... will happen.

### Notes

### Tasks
- [ ] <!--Add any tasks relevant t

[Read the thread](https://github.com/SAP/open-ux-tools/issues/3869) · 2025-11-26 · closed · outside contributor · 1 comment

### BUG - Axios-extension: Resolution of `*.dest` on BAS no longer works as the proxy is bypassed

### Related Feature

Toggle that replaces the https proxy agent was removed here: https://github.com/SAP/open-ux-tools/pull/3254

Related issue: https://github.com/SAP/open-ux-tools/issues/2279

### Description

On BAS `*.dest` format destination host name resolution is broken when using `axios-extension` from CLI tools.

### Steps to Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

### Expected results

### Actual results

[Read the thread](https://github.com/SAP/open-ux-tools/issues/3345) · 2025-06-11 · closed · outside contributor · 0 comments

### BUG - Warn user when Windows path exceeds 256 characters

<!-- 🔍 Please search existing issues to avoid creating duplicates. -->

### Related Feature
Feature request: _issue number_

### Description
During the project generation and deployment configuration, there is no warning for Windows users when the paths and names are too long and exceed 256 characters.

### Steps to Reproduce
Steps to reproduce the behaviour:
1. Go to Fiori: Open CF Application Router Generator
2. Enter MTA ID field value that is very long

Alternatively
1. Open the application

[Read the thread](https://github.com/SAP/open-ux-tools/issues/3341) · 2025-06-10 · closed · outside contributor · 1 comment

The remaining reports are on [the project's issue tracker](https://github.com/SAP/open-ux-tools/issues).