run.daslab/sap-abap-sql
NPM · SAP-ABAP-SQL-MCP · SCANNED AUG 12
Checks and fixes ABAP Open SQL for SAP's ADT data-preview console. Connects to nothing.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security98
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 31 of 107 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency97
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Cryptographically verified build provenance (signed, bound to daslabhq/sap-abap-sql-mcp). View diagnostics → Pass
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 4 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability76
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 508 tokens (~127/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability check failed: the tool surface changed between 0.1.1 and 0.3.0: 1 tool removals, 0 breaking changes, 2 additions. See how to fix → Fail
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · sap-abap-sql-mcp
claude mcp add run-daslab-sap-abap-sql -- npx -y sap-abap-sql-mcp
codex mcp add run-daslab-sap-abap-sql -- npx -y sap-abap-sql-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"run-daslab-sap-abap-sql": {
"type": "local",
"command": [
"npx",
"-y",
"sap-abap-sql-mcp"
],
"enabled": true
}
}
} openclaw mcp add run-daslab-sap-abap-sql --command npx --arg -y --arg sap-abap-sql-mcp
mcp_servers:
run-daslab-sap-abap-sql:
command: "npx"
args: ["-y", "sap-abap-sql-mcp"] {
"mcpServers": {
"run-daslab-sap-abap-sql": {
"command": "npx",
"args": [
"-y",
"sap-abap-sql-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 12 Aug 26 0
- Security disclosure: fail → unverified ▼ functional
- 11 Aug 26 0
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 8 Aug 26 +10
- Stability: unverified → fail ▼ security
- Provenance: fail → pass ▲ security
- Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
- The attested source repository moved: daslabhq/sap-abap-sql-mcp security
- Tool coverage: 100 → unverified ▼ functional
- Capabilities: pass → unverified ▼ functional
- Schema quality: pass → fail ▼ functional
- First check of Schema quality: unverified functional
- Package version: 0.1.1 → 0.3.0 functional
- 7 Aug 26 69
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 12 Aug 2026 · Analysed npm/sap-abap-sql-mcp@0.3.0
Provenance Verified
A signed build attestation was found and verified, binding this exact artifact to the source repository it claims to come from.
| Result | Verified |
|---|---|
| Ecosystem | npm |
| Reason | Verified |
| Discovered via | Registry attestation endpoint |
| Source repo | daslabhq/sap-abap-sql-mcp |
| Certificate issuer | https://token.actions.githubusercontent.com |
| Certificate SAN | https://github.com/daslabhq/sap-abap-sql-mcp/.github/workflows/release.yml@refs/tags/v0.3.0 |
| Rekor log index | 2375065418 |
| Predicate type | https://slsa.dev/provenance/v1 |
| Subject digest | sha512:1792a3f2fedad0875b2fd3c5bff816914916e934f48cac57a81cd403887690c85de5dc9a6f8c6519572c5d7d52f6781e107b8658d3bf7ec99e5a0d571 |
Dependencies 107 packages
| Packages resolved | 107 |
|---|---|
| Stale | 31 |
| Tree resolution | Complete |
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
abap_sql_explain Decode a statement the console rejected ~71
The console rejected a statement and its error does not say why. Reports every dialect problem with the correction and a stable rule id, without rewriting anything. Use abap_sql_prepare instead when you just want a statement that works.
| Name | Type | Req | Description |
|---|---|---|---|
| sql | string | yes | A single ABAP Open SQL SELECT statement. |
No output schema declared.
No examples provided.
abap_sql_prepare Prepare a statement before sending it ~72
Call this before sending any SELECT to an SAP ADT data-preview console. Returns the statement to send, or refuses it and names what to change. Fixes the mechanical problems itself and enforces the console's 255-character ceiling.
| Name | Type | Req | Description |
|---|---|---|---|
| sql | string | yes | A single ABAP Open SQL SELECT statement. |
No output schema declared.
No examples provided.
abap_sql_query Run a statement against a connected system ~128
Prepare a SELECT and run it against the SAP system this server is configured for, returning rows. Only available when SAP_URL, SAP_USER and SAP_PASSWORD are set; without them the other tools still work. Read-only: the data-preview console cannot write. Results are capped at 5000 rows by the console, and a result at the cap is reported as truncated rather than returned as if complete.
| Name | Type | Req | Description |
|---|---|---|---|
| max_rows | number | – | Rows to request, up to the console's hard cap of 5000. |
| sql | string | yes | A single ABAP Open SQL SELECT statement. |
No output schema declared.
No examples provided.
abap_sql_rules List the dialect rules ~40
The five ways this dialect differs from standard SQL, each with the correct form. Also delivered in the server instructions, so you likely have them already.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.