AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Sap Businessobjects Py Mcp Server

mcp-alexraio-sap-businessobjects-py-mcp-server · by alexraio

Python-based Model Context Protocol (MCP) server for SAP BusinessObjects BI. Enables LLMs and MCP-compatible clients to interact with SAP BO data using natural language via the official REST API.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add mcp-alexraio-sap-businessobjects-py-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-alexraio-sap-businessobjects-py-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Sap Businessobjects Py Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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+
  • pip for 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.

  1. Open the .env file in the python_sap_server directory.
  2. 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).

  1. Locate your client's MCP server configuration file.
  2. Add the following JSON object to the mcpServers section:
{
  "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.

  1. 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 format SELECT [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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.