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.
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 forscope(optional): "api", "feature", or "all" (default: "all")
- Returns: JSON array of match objects with path, line number, match text, and context
Installation & Setup
-
Install Dependencies:
cd sap-fiori-mcp-server uv add "mcp[cli]" -
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"] } } } -
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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.