rahulsethi/SAPDatasphereMCP
If you are the rightful owner of SAPDatasphereMCP and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The SAP Datasphere MCP Server provides a standardized interface for AI agents to access SAP Datasphere resources safely and efficiently.
SAP Datasphere MCP Server
An experimental Model Context Protocol (MCP) server that lets AI agents talk to SAP Datasphere.
The server exposes a small, focused set of read-only tools to:
- Discover spaces and catalog assets
- Preview relational data
- Describe schemas from samples
- Run simple relational queries
- Search for assets and columns across spaces
- Profile columns with LLM-friendly summaries
- Inspect metadata & diagnostics to understand “what is this thing?”
Current status: v0.3.0 – analytical querying + deterministic summaries, caching, and safer defaults (still preview).
APIs may still change in future versions.
✨ What’s new in v0.3.0 (on top of v0.2.0)
- Analytical querying:
datasphere_query_analytical(select / filter / order / paging) for assets exposed via the analytical consumption API. - Deterministic summaries:
datasphere_summarize_asset,datasphere_summarize_space,datasphere_summarize_column_profile, anddatasphere_compare_assets_basic. - Metadata TTL cache: faster repeated calls for discovery tools (configurable TTL + max entries).
- Configurable safety caps: hard limits for row-returning tools and search results via env vars.
- OAuth/config hardening: safer defaults (TLS verify on), better errors, and a Basic-auth token flow.
- Docs & packaging: aligned tool names/docs and a cleaner release path.
✨ What’s new in v0.2.0 (on top of v0.1.0)
v0.1.0 gave you the basics: spaces, asset listings, previews, simple relational queries, search, and a lightweight column profile.
v0.2.0 focuses on metadata, discovery, and better signals for LLMs:
-
Richer catalog metadata (added in v0.2.0)
datasphere_get_asset_metadata– one place to get labels, type, descriptions, and which APIs (relational/analytical) are exposed for an asset.
-
Column-level introspection (added in v0.2.0)
datasphere_list_columns– lists columns using$metadatawhen possible (types, key flags, nullability) with a preview-based fallback.
-
Column search across spaces (added in v0.2.0)
datasphere_find_assets_with_column– scan one space for assets with a given column.datasphere_find_assets_by_column– scan multiple spaces with safety caps (max spaces / assets per space).
-
Richer profiling for a single column (extended in v0.2.0)
datasphere_profile_columnnow includes:- counts & distincts,
- numeric stats: min, max, mean, p25/p50/p75, IQR, fences, outlier count,
- categorical summary for low-cardinality columns (top values & fractions),
- a coarse
role_hint("id","measure","dimension") to help LLMs reason about semantics.
-
Diagnostics & identity helpers (added in v0.2.0)
- Additional tools to inspect MCP & environment configuration, report mock/live mode, and expose “who am I talking to?” style information in a structured way.
(Handy when your AI is debugging connection issues.)
- Additional tools to inspect MCP & environment configuration, report mock/live mode, and expose “who am I talking to?” style information in a structured way.
-
Mock mode for demos (added in v0.2.0)
DATASPHERE_MOCK_MODE=1switches the client to a small in-memory demo dataset so you can try tools without a real tenant.
Everything remains read-only against your Datasphere tenant.
🚦 Feature overview (v0.3.0)
This section describes the main tool groups and how they fit together.
-
Connectivity & diagnostics
datasphere_pingdatasphere_diagnosticsdatasphere_get_tenant_infodatasphere_get_current_userdatasphere_plugins_status(v0.3.0)
-
Spaces & assets
datasphere_list_spacesdatasphere_list_assets- TTL cache (v0.3.0) for common discovery calls (configurable via env vars)
-
Data preview & querying
datasphere_preview_asset(sample rows)datasphere_query_relational(OData-style relational queries)datasphere_query_analytical(v0.3.0, analytical consumption when exposed)- Guardrails (v0.3.0):
$topis clamped per-tool; responses include requested vs effective limits inmeta
-
Metadata & discovery
datasphere_get_asset_metadatadatasphere_list_columns(prefers$metadata, falls back to sample inference)datasphere_search_assets,datasphere_find_assets_with_column,datasphere_find_assets_by_column
-
Deterministic summaries & comparisons (v0.3.0)
datasphere_summarize_assetdatasphere_summarize_spacedatasphere_summarize_column_profiledatasphere_compare_assets_basic
-
Profiling & quick EDA
datasphere_describe_asset_schemadatasphere_profile_column(numeric + categorical stats, plus a role hint when possible)
All tools are intentionally read-only and designed to be safe to call from LLMs.
✨ Features (v0.1.0)
This section reflects the original feature set introduced in v0.1.0.
All of these remain available in v0.3.0.
All features are read-only against your Datasphere tenant.
Health & connectivity
datasphere_ping
Check that configuration & OAuth are at least sane.
TLS verification can be relaxed for corporate proxies (DATASPHERE_VERIFY_TLS=0).
Spaces & catalog
-
datasphere_list_spaces
List visible Datasphere spaces. -
datasphere_list_assets
List catalog assets (tables/views/models) in a given space.
Data preview & querying
-
datasphere_preview_asset
Fetch a small sample of rows from a relational asset. -
datasphere_query_relational
Run simple OData-style relational queries with:$select$filter$orderby$top$skip
Schema & profiling
-
datasphere_describe_asset_schema
Sample-based column summary: names, example values, rough type inference, and simple null counts. -
datasphere_profile_column
Quick profile for a single column: sample size, null count, distinct count, basic numeric stats (min / max / mean).
Search & summaries
-
datasphere_search_assets
Fuzzy search assets by name / id across spaces. -
datasphere_space_summary
Small overview of a space: asset counts by type + a sample list of assets.
There are also a few demo scripts for local smoke-testing without an MCP client.
🧱 Architecture (high level)
Very roughly:
MCP client (e.g. Claude Desktop)
│
▼
MCP stdio transport ──> FastMCP server ──> tools/tasks.py (MCP tools)
│
▼
DatasphereClient
│
▼
SAP Datasphere REST APIs (Catalog & Consumption)
- The
sap-datasphere-mcpconsole script starts a stdio MCP server. tools/tasks.pydefines all MCP tools and wires them toDatasphereClient.DatasphereClientwraps the Datasphere Catalog & Consumption APIs usinghttpxand returns simple JSON-serialisable structures.
✅ Requirements
- Python 3.10+ (developed and tested on 3.14).
- A working SAP Datasphere tenant (unless you run in mock mode).
- A technical OAuth client with:
- token URL,
- client ID,
- client secret,
- permission to call the Catalog & Consumption APIs.
This project is aimed at technical users who are comfortable with:
- environment variables,
- basic command-line usage, and
- SAP Datasphere / SAP BTP concepts.
🚀 Installation
Option 1 – Install directly from GitHub (recommended for users)
In any virtual environment where you want to use the MCP server:
pip install "git+https://github.com/rahulsethi/SAPDatasphereMCP.git"
This installs:
- the
sap_datasphere_mcppackage, - the
sap-datasphere-mcpconsole script, and - the required dependencies (
mcp,httpx,pydantic, …).
Option 2 – Clone the repo (recommended for contributors)
git clone https://github.com/rahulsethi/SAPDatasphereMCP.git
cd SAPDatasphereMCP
# Create and activate a virtualenv
# Windows (PowerShell)
python -m venv .venv
.\.venv\Scripts\Activate.ps1
# macOS / Linux (bash/zsh)
python -m venv .venv
source .venv/bin/activate
# Install in editable (dev) mode
pip install -e ".[dev]"
This gives you the same console script plus dev tools like pytest for local tests.
⚙️ Configure SAP Datasphere credentials
The MCP server reads its configuration from environment variables via
DatasphereConfig.from_env().
At minimum you need:
-
DATASPHERE_TENANT_URL
Base URL of your Datasphere tenant
e.g.https://your-tenant-id.eu10.hcs.cloud.sap -
DATASPHERE_OAUTH_TOKEN_URL
OAuth token endpoint for your technical client
e.g.https://your-uaa-domain/oauth/token -
DATASPHERE_CLIENT_ID
Client ID of your technical OAuth client. -
DATASPHERE_CLIENT_SECRET
Client secret of your technical OAuth client.
Optional:
-
DATASPHERE_VERIFY_TLS"1"or unset: verify TLS certificates (default, recommended)."0": disable TLS verification (only if you’re behind a corporate proxy with self-signed certs and you understand the risks).
-
DATASPHERE_MOCK_MODE(added in v0.2.0)"1": use an in-memory mock Datasphere client with a tiny demo dataset."0"or unset: connect to the real Datasphere tenant using the OAuth details above.
Example (PowerShell helper script, Windows)
Create set-datasphere-env.ps1 in the project root:
$env:DATASPHERE_TENANT_URL = "https://your-tenant-id.eu10.hcs.cloud.sap"
$env:DATASPHERE_OAUTH_TOKEN_URL = "https://your-uaa-domain/oauth/token"
$env:DATASPHERE_CLIENT_ID = "your-client-id"
$env:DATASPHERE_CLIENT_SECRET = "your-client-secret"
# Optional: skip TLS verification for self-signed corporate proxies
# (only if you understand the security implications)
# $env:DATASPHERE_VERIFY_TLS = "0"
# Optional: run in mock mode without a real tenant (v0.2.0)
# $env:DATASPHERE_MOCK_MODE = "1"
Write-Host "Datasphere environment variables set."
Then in each new shell:
.\set-datasphere-env.ps1
On macOS / Linux you can do the same with an export-based shell script.
🧪 Local smoke tests
With env vars set and your virtualenv active:
pytest
Then try the demo scripts:
# List spaces via MCP tasks
python demo_mcp_list_spaces.py
# List assets in a specific space (set DATASPHERE_TEST_SPACE first)
python demo_mcp_list_assets.py
# Preview data (with optional filter)
python demo_mcp_preview_filtered.py
# Describe schema from a sample
python demo_mcp_describe_asset.py
# Query with filter/sort/select/skip
python demo_mcp_query_relational.py
# Search assets by name / id
python demo_mcp_search_assets.py
# Summarise a space
python demo_mcp_space_summary.py
# Profile one column
python demo_mcp_profile_column.py
Each script prints JSON-like results so you can see exactly what MCP tools return to an AI agent.
🖥️ Running the MCP server
To start the stdio MCP server:
sap-datasphere-mcp
The process will listen on stdin/stdout using JSON-RPC as defined by MCP.
You normally don’t talk to this directly; an MCP-compatible client
(e.g. Claude Desktop) launches it and sends requests over stdio.
If DATASPHERE_MOCK_MODE=1 is set, the server will run entirely in-memory
against a small demo dataset (v0.2.0).
🤖 Using with Claude Desktop (example)
Exact config file locations differ by OS and Claude version;
check Anthropic’s docs for current paths.
Conceptually, you add an entry under mcpServers telling Claude how to start
your server and what env vars to pass.
Example mcpServers entry (JSON, comments removed):
{
"mcpServers": {
"sap-datasphere": {
"command": "sap-datasphere-mcp",
"args": [],
"env": {
"DATASPHERE_TENANT_URL": "https://your-tenant-id.eu10.hcs.cloud.sap",
"DATASPHERE_OAUTH_TOKEN_URL": "https://your-uaa-domain/oauth/token",
"DATASPHERE_CLIENT_ID": "your-client-id",
"DATASPHERE_CLIENT_SECRET": "your-client-secret",
"DATASPHERE_VERIFY_TLS": "1"
}
}
}
}
After editing the config, restart Claude Desktop.
The new MCP server should appear in the list of tools the model can call.
🔧 MCP tools – quick reference (with version tags)
All tools live in sap_datasphere_mcp.tools.tasks and are registered on the
MCP server under the names below.
Health & discovery
-
datasphere_ping(since v0.1.0)
Basic connectivity check – returns{ "ok": bool }. -
datasphere_diagnostics(added in v0.2.0)
Runs a small set of health checks (client init, ping, list_spaces) and returns a structured diagnostics report including mock/live mode and elapsed time. -
datasphere_get_tenant_info(added in v0.2.0)
Redacted snapshot of tenant configuration (URLs, region hint, TLS settings, OAuth presence) – never returns secrets. -
datasphere_get_current_user(added in v0.2.0)
Describes the current Datasphere identity context (technical user vs mock mode) in a safe, high-level way.
Spaces & catalog
-
datasphere_list_spaces(since v0.1.0)
List visible Datasphere spaces. -
datasphere_list_assets(since v0.1.0)
List catalog assets in a given space (id, name, type, description). -
datasphere_get_asset_metadata(added in v0.2.0)
Fetch catalog metadata for a single asset: ids, name, label, description, type, relational/analytical exposure flags, useful URLs, plus raw payload.
Data preview & querying
-
datasphere_preview_asset(since v0.1.0)
Fetch a small sample of rows from an asset:columns,rows,truncated,meta.
-
datasphere_query_relational(since v0.1.0)
Relational query helper with:$select,$filter,$orderby,$top,$skipreflected inmeta.
Schema & profiling
-
datasphere_describe_asset_schema(since v0.1.0)
Infer column-oriented schema from a sample: column names, rough Python types, null counts, example values. -
datasphere_list_columns(added in v0.2.0)
List columns via relational$metadata(EDMX/XML) when available, falling back to preview-based inference. Includes type, key flag, nullability where possible. -
datasphere_profile_column- (v0.1.0) basic profile: sample size, null count, distinct count, min, max, mean for numeric columns.
- (extended in v0.2.0) adds:
- percentiles (p25, p50, p75),
- IQR and outlier fences,
- outlier count,
- categorical summary for low-cardinality columns,
role_hint("id","measure","dimension").
Search & summaries
-
datasphere_search_assets(since v0.1.0)
Substring search on asset id, name, description, or type across one or many spaces. -
datasphere_space_summary(since v0.1.0)
Overview of a space: total assets, counts by type, sample list of assets. -
datasphere_find_assets_with_column(added in v0.2.0)
Within a single space, scan up tomax_assetsto find assets that expose a given column name (case-insensitive, exact match). -
datasphere_find_assets_by_column(added in v0.2.0)
Similar to the above, but across multiple spaces with caps on:- number of spaces scanned,
- assets per space,
- total matches returned (
limit).
Example response shape (preview)
A typical datasphere_preview_asset response looks like:
{
"columns": ["EMP_ID", "FIRST_NAME", "LAST_NAME"],
"rows": [
[101, "Rudransh", "Sharma"],
[102, "Anita", "Müller"]
],
"truncated": false,
"meta": {
"space_id": "HR_SPACE",
"asset_name": "EMP_VIEW_TEST",
"top": 20
}
}
All other tools follow a similar pattern: small, predictable JSON structures that are easy for LLMs (and humans) to reason about.
📜 Changelog
All notable changes to this project are documented here.
[0.3.0]
Added
- Configurable guardrails for row-returning tools and search results (caps enforced in tool layer).
- Metadata-focused TTL cache to reduce repeated backend calls for discovery/metadata tools.
- Analytical querying tool:
datasphere_query_analytical. - Deterministic summary tools:
datasphere_summarize_assetdatasphere_summarize_spacedatasphere_summarize_column_profile
- Asset comparison helper:
datasphere_compare_assets_basic. - Plugin observability tool:
datasphere_plugins_status(also surfaced in diagnostics output).
Changed
- Tool responses now include clearer
metafields (requested vs effective limits, cap applied flags) to make truncation explicit. - OAuth client hardened (client-credentials via HTTP Basic auth + token caching + clearer errors).
- Config expanded for TLS verification toggle, caps, and cache settings.
Fixed
- Normalized handling for optional query metadata to avoid
None-shaped surprises in tool responses.
0.2.0 – Metadata & Diagnostics expansion
Status: in development / preview.
Added
-
Catalog metadata helper
datasphere_get_asset_metadatato fetch labels, descriptions, type and relational/analytical exposure flags for a single asset, plus raw payload.
-
Column-level introspection
datasphere_list_columnsto list columns using relational$metadata(EDMX/XML) when available, with preview-based fallback.
-
Column search across spaces
datasphere_find_assets_with_columnto find assets exposing a given column in a single space.datasphere_find_assets_by_columnto search across multiple spaces with limits on spaces and assets scanned.
-
Richer column profiling
- Extended
datasphere_profile_columnwith:- numeric percentiles (p25, p50, p75),
- IQR and Tukey-style fences,
- outlier count,
- categorical summary for low-cardinality columns,
- heuristic
role_hint("id","measure","dimension").
- Extended
-
Diagnostics & identity helpers
datasphere_diagnosticsto run high-level MCP & tenant health checks.datasphere_get_tenant_infoto inspect redacted configuration (URLs, region hint, TLS, OAuth presence).datasphere_get_current_userto describe the current identity context (technical user vs mock mode) without exposing secrets.
-
Mock mode
- Support for
DATASPHERE_MOCK_MODE=1, enabling a small in-memory demo dataset for local testing and demos without a real tenant.
- Support for
-
Packaging metadata
pyproject.tomlupdated with:- project name
mcp-sap-datasphere-server(planned PyPI distribution name), - explicit
src/sap_datasphere_mcppackage configuration for Hatch.
- project name
Changed
datasphere_profile_columnnow returns a richernumeric_summaryand optionalcategorical_summaryandrole_hint.- Internals of
tools/tasks.pyrefactored to support both realDatasphereClientandMockDatasphereClient. - Documentation updated to:
- distinguish clearly between v0.1.0 and v0.2.0 features,
- describe diagnostics, mock mode and metadata tools,
- mention the planned PyPI distribution name.
Fixed
- Improved error handling and more structured
metablocks in several tools. - Clarified documentation around environment variables and TLS verification.
0.1.0 – First public preview
Initial GitHub release.
Added
-
Health & connectivity
datasphere_pingto check basic configuration & OAuth.
-
Spaces & catalog
datasphere_list_spacesto list visible Datasphere spaces.datasphere_list_assetsto list catalog assets in a given space.
-
Data preview & relational querying
datasphere_preview_assetfor small row samples.datasphere_query_relationalfor simple$select/$filter/$orderby/$top/$skipqueries.
-
Schema & profiling
datasphere_describe_asset_schemafor sample-based column summaries.datasphere_profile_columnfor basic column profiling (counts, distincts, min / max / mean for numeric columns).
-
Search & summaries
datasphere_search_assetsfor fuzzy search across spaces.datasphere_space_summaryfor quick space-level overviews.
-
Tooling & demos
- Initial demo scripts (
demo_mcp_*) for local smoke tests. - Basic documentation and instructions for using the MCP server with Claude Desktop.
- Initial demo scripts (
🔢 Versioning
Current version: 0.3.0.
- 0.3.0 – analytical + summaries (current)
- Analytical consumption tool:
datasphere_query_analytical - Deterministic summaries:
datasphere_summarize_asset/space/column_profile,datasphere_compare_assets_basic - TTL cache + configurable caps for safer LLM-driven exploration
- Analytical consumption tool:
- 0.2.0 – metadata & diagnostics
- Discovery tools:
datasphere_get_asset_metadata,datasphere_list_columns,datasphere_search_assets - Mock mode and improved diagnostics tooling
- Discovery tools:
- 0.1.0 – initial GitHub release
- Basic MCP wiring + relational exploration
A detailed, version-by-version log lives in CHANGELOG.md (and is mirrored above in the Changelog section).
📄 License
This project is released under the MIT License.
See the LICENSE file for details.
You are free to use, modify, and redistribute the code, provided you keep the copyright notice and license text in derivative works.