PluginBench
MCP Server
Active
Apache-2.0

io.github.UI5/mcp-server MCP Server

io.github.UI5/mcp-server

What is the io.github.UI5/mcp-server MCP server?

MCP server for SAPUI5/OpenUI5 development

How to install io.github.UI5/mcp-server

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • UI5_MCP_SERVER_ALLOWED_DOMAINS

    A comma-separated list of domains that are allowed to be used in various tools, for example: 'localhost, example.com, sub.example.com'. Set to an empty string to allow any domains. For wildcard subdomains, prefix the domain with a dot: '.example.com'. This will match 'www.example.com' but not 'example.com'.

  • UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT

    Set to any value to disable structured content in the MCP server responses.

  • UI5_MCP_SERVER_RESPONSE_NO_RESOURCES

    Set to any value to disable resources in the MCP server responses, see https://modelcontextprotocol.io/specification/2025-06-18/server/resource. This is useful for clients that do not support resources, see https://modelcontextprotocol.io/clients, such as Cursor or the Gemini CLI.

  • UI5_LOG_LVL

    Internal log level (https://ui5.github.io/cli/stable/pages/Troubleshooting/#changing-the-log-level): 'silent', 'error', 'warn', 'info', 'perf', 'verbose' or 'silly'

  • UI5_DATA_DIR

    Directory where the MCP server stores its data, such as cached API references. Defaults to the '.ui5' directory in the user's home directory.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@ui5/mcp-server"
      ],
      "env": {
        "UI5_MCP_SERVER_ALLOWED_DOMAINS": "<YOUR_UI5_MCP_SERVER_ALLOWED_DOMAINS>",
        "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT>",
        "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_RESOURCES>",
        "UI5_LOG_LVL": "<YOUR_UI5_LOG_LVL>",
        "UI5_DATA_DIR": "<YOUR_UI5_DATA_DIR>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@ui5/mcp-server"
      ],
      "env": {
        "UI5_MCP_SERVER_ALLOWED_DOMAINS": "<YOUR_UI5_MCP_SERVER_ALLOWED_DOMAINS>",
        "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT>",
        "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_RESOURCES>",
        "UI5_LOG_LVL": "<YOUR_UI5_LOG_LVL>",
        "UI5_DATA_DIR": "<YOUR_UI5_DATA_DIR>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@ui5/mcp-server"
      ],
      "env": {
        "UI5_MCP_SERVER_ALLOWED_DOMAINS": "<YOUR_UI5_MCP_SERVER_ALLOWED_DOMAINS>",
        "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT>",
        "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_RESOURCES>",
        "UI5_LOG_LVL": "<YOUR_UI5_LOG_LVL>",
        "UI5_DATA_DIR": "<YOUR_UI5_DATA_DIR>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ui5/mcp-server"
      ],
      "env": {
        "UI5_MCP_SERVER_ALLOWED_DOMAINS": "<YOUR_UI5_MCP_SERVER_ALLOWED_DOMAINS>",
        "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT>",
        "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES": "<YOUR_UI5_MCP_SERVER_RESPONSE_NO_RESOURCES>",
        "UI5_LOG_LVL": "<YOUR_UI5_LOG_LVL>",
        "UI5_DATA_DIR": "<YOUR_UI5_DATA_DIR>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-server --env UI5_MCP_SERVER_ALLOWED_DOMAINS=<YOUR_UI5_MCP_SERVER_ALLOWED_DOMAINS> --env UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT=<YOUR_UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT> --env UI5_MCP_SERVER_RESPONSE_NO_RESOURCES=<YOUR_UI5_MCP_SERVER_RESPONSE_NO_RESOURCES> --env UI5_LOG_LVL=<YOUR_UI5_LOG_LVL> --env UI5_DATA_DIR=<YOUR_UI5_DATA_DIR> -- npx -y @ui5/mcp-server

Related MCP servers

Documentation and API assistance for building UIs with UI5 Web Components for React.

534
TypeScript
Apache-2.0
View repository →

MCP server for UI5 Web Components development assistance

19
TypeScript
Apache-2.0
View repository →