SAP Fiori Jetpack Compose UI SDK Documentation MCP Server
Provides programmatic access to documentation for the SAP Fiori UI SDK designed for Jetpack Compose, allowing users to search and retrieve API references and implementation guides.
Enables access to the SAP Fiori Jetpack Compose UI SDK documentation files, featuring tools to list and read API references and feature guides across more than 6,000 files.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SAP Fiori Jetpack Compose UI SDK Documentation MCP Servershow me the feature guide for the FioriTopAppBar component"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: UseKeen Documentation MCP Server
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.pyUsage 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.
This server cannot be deployed
Maintenance
Related MCP Connectors
Provides access to Google's public developer documentation.
Versioned documentation registry and semantic search for AI tools and coding assistants.
Search PayU docs, browse the payment integration catalog, and fetch production-ready code.
Search and read the public Applivery docs (MDM & app distribution). Read-only, no auth.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search documentation of packages and services to find implementation details, examples, and specifications.MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to search for documentation of packages and services, providing implementation details, examples, and specifications through a specialized API.1252MIT
- AlicenseAqualityAmaintenanceProvides offline access to SAP documentation and real-time SAP Community content, integrating official documentation with community-driven solutions for comprehensive developer support.9226Apache 2.0
- AlicenseNot gradedqualityDmaintenanceProvides AI assistants with access to design documentation across multiple code libraries, enabling discovery of existing utilities and patterns to avoid reimplementation.2MIT