SAP Fiori Jetpack Compose UI SDK Documentation MCP Server

SAP Fiori Jetpack Compose UI SDK Documentation MCP Server

Provides programmatic access to SAP Fiori Jetpack Compose UI SDK documentation, including API references and feature guides. It enables users to list, search, and retrieve content from over 6,000 documentation files to support Android development.

Category
Visit Server

README

SAP Fiori Jetpack Compose UI SDK Documentation MCP Server

This MCP server provides programmatic access to SAP Fiori Jetpack Compose UI SDK documentation files.

Features

The server provides 5 tools to access documentation:

1. list_api_refs

Lists all API reference markdown files in res/fiori-api-reference/

  • Parameters:
    • filter (optional): Regex pattern to filter file paths
  • Returns: JSON array of relative file paths

2. get_api_ref

Retrieves the content of a specific API reference file

  • Parameters:
    • path (required): Relative path to the API reference file
  • Returns: Full markdown content as string
  • Security: Path must be under res/fiori-api-reference/

3. list_feature_guides

Lists all feature guide markdown files in res/fiori-feature-guides/compose/

  • Parameters:
    • filter (optional): Regex pattern to filter file paths
  • Returns: JSON array of relative file paths

4. get_feature_guide

Retrieves the content of a specific feature guide file

  • Parameters:
    • path (required): Relative path to the feature guide file
  • Returns: Full markdown content as string
  • Security: Path must be under res/fiori-feature-guides/compose/

5. search_docs

Searches for patterns across all documentation files

  • Parameters:
    • pattern (required): Regex pattern to search for
    • scope (optional): "api", "feature", or "all" (default: "all")
  • Returns: JSON array of match objects with path, line number, match text, and context

Installation & Setup

  1. Install Dependencies:

    cd sap-fiori-mcp-server
    uv add "mcp[cli]"
    
  2. Configuration: The server is already configured in .vscode/settings.json:

    {
      "mcpServers": {
        "sap-fiori-docs": {
          "command": "python",
          "args": ["sap-fiori-mcp-server/server.py"],
          "env": {},
          "disabled": false,
          "autoApprove": ["list_api_refs", "list_feature_guides"]
        }
      }
    }
    
  3. Restart Cline: After configuration changes, restart Cline to connect to the MCP server.

Testing

Run the test suite to verify functionality:

cd sap-fiori-mcp-server
source .venv/bin/activate
python test_server.py

Usage Examples

Once connected, you can use the tools in Cline:

# List all API reference files containing "button"
use_mcp_tool: sap-fiori-docs/list_api_refs {"filter": "button"}

# Get content of a specific API reference
use_mcp_tool: sap-fiori-docs/get_api_ref {"path": "res/fiori-api-reference/fiori-compose-ui/com.sap.cloud.mobile.fiori.compose.button.ui/index.md"}

# List all feature guides
use_mcp_tool: sap-fiori-docs/list_feature_guides {}

# Get a feature guide
use_mcp_tool: sap-fiori-docs/get_feature_guide {"path": "res/fiori-feature-guides/compose/button.md"}

# Search for "FioriTopAppBar" across all docs
use_mcp_tool: sap-fiori-docs/search_docs {"pattern": "FioriTopAppBar", "scope": "all"}

Documentation Statistics

  • API References: 6,350+ markdown files
  • Feature Guides: 51+ markdown files
  • Total Coverage: Complete SAP Fiori Jetpack Compose UI SDK documentation

Security Features

  • Path validation prevents directory traversal attacks
  • File size limits (200KB) prevent memory issues
  • Search result limits (2000 matches) prevent runaway queries
  • Comprehensive error handling and logging

Logging

The server includes comprehensive logging:

  • [Setup] - Server initialization and configuration
  • [API] - Tool calls and file operations
  • [Error] - Error conditions and failures

All logs are written to stderr and can be viewed in the MCP server output.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured