Install
$ agentstack add mcp-alexraio-sap-businessobjects-py-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Python MCP Server for SAP BusinessObjects BI
Overview
This project provides a Python-based Model Context Protocol (MCP) server for SAP BusinessObjects BI. It allows Large Language Models (LLMs) and other MCP-compatible clients to interact with your SAP BO data using natural language.
Unlike the original Java implementation, this version uses the official SAP BusinessObjects REST API for data access and is built using the Model Context Protocol Python SDK.
Prerequisites
- Python 3.8+
pipfor package installation
Setup and Configuration
Follow these steps to set up and configure the server.
1. Install Dependencies
Navigate to the python_sap_server directory and install the required packages from the requirements.txt file:
cd ~/git/sap-businessobjects-bi-mcp-server-by-cdata/python_sap_server
pip install -r requirements.txt
2. Configure Connection
You must provide your SAP BusinessObjects REST API endpoint and credentials.
- Open the
.envfile in thepython_sap_serverdirectory. - Replace the placeholder values with your actual connection details.
# SAP BusinessObjects REST API Configuration
SAP_BO_REST_API_URL="http://:6405/biprws"
SAP_BO_USERNAME="your_username"
SAP_BO_PASSWORD="your_password"
Running the Server
There are two primary ways to run the server.
Method 1: Standalone
You can run the server directly from your terminal. This is useful for testing and development. The server will use STDIO for communication.
python ~/git/sap-businessobjects-bi-mcp-server-by-cdata/python_sap_server/app.py
Method 2: Integration with an MCP Client (e.g., Gemini)
To have your client automatically load the server, you need to add it to the client's configuration file (e.g., settings.json).
- Locate your client's MCP server configuration file.
- Add the following JSON object to the
mcpServerssection:
{
"mcpServers": {
"sap-bo-python": {
"command": "python3",
"args": [
"~/git/sap-businessobjects-bi-mcp-server-by-cdata/python_sap_server/app.py"
],
"workingDirectory": "~/git/sap-businessobjects-bi-mcp-server-by-cdata/python_sap_server"
}
}
}
Note: For robustness, you may want to replace "python3" with the absolute path to your Python executable.
- Restart your MCP client. The server will be launched automatically.
Available Tools
Once running, the server exposes the following tools to the LLM:
sapbusinessobjectsbi_get_tables
Retrieves a list of available Universes (treated as tables).
- Usage Example: "list all tables in sap business objects"
sapbusinessobjectsbi_get_columns
Retrieves the columns (dimensions, measures, etc.) for a specific table (Universe).
- Parameters:
table(str): The name of the table.- Usage Example: "what are the columns in the 'eFashion' table?"
sapbusinessobjectsbi_run_query
Executes a simple SELECT query against a table (Universe).
- Parameters:
sql(str): The SQL query to run. Must be in the formatSELECT [Column1], [Column2] FROM [TableName].- Usage Example: "show me the 'Year' and 'Sales revenue' from the 'eFashion' table"
Development Notes
IMPORTANT: The sap_client.py file contains a client for the SAP BusinessObjects REST API that is based on common API patterns. The specific endpoints, request payloads, and response parsing logic are highly likely to require modification to fit your specific version and configuration of SAP BusinessObjects.
Before extensive use, you should review and adapt sap_client.py by inspecting the actual requests and responses from your SAP BO server's REST API.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: alexraio
- Source: alexraio/sap-businessobjects-py-mcp-server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.