Help us improve
Share bugs, ideas, or general feedback.
From sap-datasphere
Connects to SAP Datasphere for data modeling, analytics, queries, and management. Runs locally as subprocess; requires auth credentials (base URL, client ID, token URL, client secret).
npx claudepluginhub secondsky/sap-skills --plugin sap-datasphereCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"sap-datasphere": {
"command": "npx",
"args": [
"-y",
"@mariodefe/sap-datasphere-mcp"
],
"env": {
"DATASPHERE_BASE_URL": "${DATASPHERE_BASE_URL}",
"DATASPHERE_CLIENT_ID": "${DATASPHERE_CLIENT_ID}",
"DATASPHERE_TOKEN_URL": "${DATASPHERE_TOKEN_URL}",
"DATASPHERE_CLIENT_SECRET": "${DATASPHERE_CLIENT_SECRET}"
}
}
}
}Replace placeholder values for: DATASPHERE_CLIENT_SECRET, DATASPHERE_TOKEN_URL
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
DATASPHERE_BASE_URL=${DATASPHERE_BASE_URL}DATASPHERE_CLIENT_ID=${DATASPHERE_CLIENT_ID}DATASPHERE_TOKEN_URL=${DATASPHERE_TOKEN_URL}DATASPHERE_CLIENT_SECRET=${DATASPHERE_CLIENT_SECRET}Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.