A headless, client-neutral MCP server for governed SAP ABAP development.
SAP ABAP MCP lets Codex, Claude, and other MCP hosts work with SAP through ABAP Development Tools (ADT) HTTP services. It supports multiple named SAP profiles, repository development, quality checks, transports, abapGit, RAP, runtime inspection, cross-system comparison, and guarded refactoring without requiring an IDE runtime, SAP GUI, or an ABAP FS workspace.
SAP also provides an official ADT MCP Server inside ADT clients. This project serves a different deployment model.
| SAP ABAP MCP | SAP ADT MCP Server | |
|---|---|---|
| Runtime | Independent Node.js process over local stdio, or self-hosted Streamable HTTP |
Local HTTP server hosted by an ADT client |
| Hosts | Codex, Claude, and other MCP clients | MCP hosts configured against the ADT client |
| SAP connections | Multiple named profiles in one process | SAP projects and sessions managed by ADT |
| Governance | Production read-only policy, package restrictions, confirmations, optional roles and audit logs | Governed by the installed ADT version and SAP authorizations |
This is a deployment-model comparison, not a capability benchmark or a claim of SAP endorsement. Endpoint availability varies by SAP release and system.
The animation contains synthetic names and no live SAP data. See the accessible transcript.
You need Node.js 20 or later, network or VPN access to SAP, an SAP HTTPS URL, a three-digit client number, a username, and ADT authentication permission.
Windows:
npx.cmd @coaspe/sap-abap-mcp@latest setupmacOS or Linux:
npx @coaspe/sap-abap-mcp@latest setupThe Server name is the local name used later as connectionId; SAP URL is
the SAP HTTPS endpoint. The wizard also collects the Basic Auth username,
environment, optional writable-package restriction, and optional data-query
permission. Windows and macOS verify SAP before saving and protect secrets with
DPAPI or Keychain.
Linux stores only non-secret settings and prints the environment variable to
use for the password or client secret.
npx @coaspe/sap-abap-mcp@latest profile list
npx @coaspe/sap-abap-mcp@latest setup edit
npx @coaspe/sap-abap-mcp@latest setup removePass a Server name to select it directly:
npx @coaspe/sap-abap-mcp@latest setup edit DEV100
npx @coaspe/sap-abap-mcp@latest setup remove DEV100On Windows, use npx.cmd. Editing starts with the current values, verifies the
updated connection, and replaces the saved configuration only after validation.
Removal asks for confirmation and also removes stored SAP and abapGit credentials.
See Setup and profile management for every field,
authentication type, platform-specific secret storage, and automation examples.
Run only the command for your client.
Windows with Codex:
codex mcp add sap-abap -- npx.cmd -y @coaspe/sap-abap-mcp@latest serveWindows with Claude Code:
claude mcp add --transport stdio --scope user sap-abap -- npx.cmd -y @coaspe/sap-abap-mcp@latest servemacOS or Linux with Codex:
codex mcp add sap-abap -- npx -y @coaspe/sap-abap-mcp@latest servemacOS or Linux with Claude Code:
claude mcp add --transport stdio --scope user sap-abap -- npx -y @coaspe/sap-abap-mcp@latest serveThe unscoped serve command exposes all saved profiles. Every SAP-facing tool
still requires an explicit connectionId, which prevents accidental routing to
another system.
npx @coaspe/sap-abap-mcp@latest doctor DEV100
codex mcp listClaude Code users can run claude mcp get sap-abap. Restart the MCP client after
registration or an npm update. /mcp confirms that the process started; it does
not prove SAP authentication. A completed setup or successful doctor does.
Claude Code:
/plugin marketplace add Coaspe/sap-abap-mcp
/plugin install sap-abap-mcp@coaspe-sap
/reload-plugins
/sap-abap-mcp:sap-abap-setup
Codex users can run codex plugin marketplace add Coaspe/sap-abap-mcp, install
SAP ABAP MCP from the Coaspe SAP Developer Tools marketplace, and ask Codex
to use the included sap-abap-setup skill. Profiles live outside plugin caches
and survive updates.
- Repository search, source reads and writes, object creation, activation, deletion, versions, package moves, and guarded batch operations.
- Classes, interfaces, programs, function groups/modules, DDIC objects, CDS, DCL, metadata extensions, service definitions/bindings, and BDEFs.
- ABAP Unit, ATC, syntax diagnostics, formatting, quick fixes, where-used, dependencies, semantic navigation, rename, and extract-method workflows.
- Transport inspection, read-only release assessment, CI evidence, comparison, creation, release, deletion, owner, and user management.
- Runtime dumps, traces, system feeds, debugging, class/program execution, and an optional fixed ABAP REPL contract.
- abapGit repository lifecycle and branch operations with per-repository secrets.
- RAP validation, preview, generation, and service publication workflows.
- Optional classic Screen/Dynpro and GUI Status access through a reviewed same-origin SAP bridge.
The current v1 surface contains 120 action-specific tools and seven Resources.
The legacy complete 53-tool schema remains available with --api-version v0.
| Launch | Advertised surface |
|---|---|
serve |
All 120 v1 tools and seven Resources |
serve --preset compact |
12 common read and inspection tools |
serve --preset development |
34 development tools |
serve --preset assurance |
15 read-only review and assurance tools |
serve --toolsets core,analysis |
Selected v1 toolsets |
Normal clients should omit both --api-version and --toolsets. See the
v1 migration guide, parity matrix,
and response token audit for exact contracts and
schema budgets.
- Profiles marked
productionare read-only. - Optional package allowlists constrain writes.
- Destructive or high-impact operations require preview state and exact, payload-bound confirmation values.
- Non-local package writes require a transport; local package
$TMPdoes not. - Caller-supplied SAP SQL is disabled per profile by default, remains read-only, bounded, and redacted from audit arguments.
- Passwords and OAuth secrets are never stored in profile JSON. Windows uses DPAPI, macOS uses Keychain, and Linux uses environment variables.
- HTTP deployments can add API-key or OIDC roles, profile assignments, rate limits, session isolation, origin/host controls, and JSONL audit events.
Read Setup and profile management, HTTP deployment and security, and the optional classic-object bridge boundary before enabling advanced access.
Run the same read-only transport gate without an MCP host:
npx @coaspe/sap-abap-mcp@latest assure DEV100 --transport DEVK900123 \
--checks atc,unit_tests --formats json,sarif,junit \
--report-directory ./reportsExit codes are 0 for passed, 1 for failed, and 2 for incomplete evidence.
The command never releases or modifies a transport. action.yml
wraps it for GitHub Actions and exposes JSON, SARIF, and JUnit report paths.
The included sap-abap-change-assurance skill guides the same workflow.
| Mode | Use when | Details |
|---|---|---|
Local stdio |
One developer runs Codex, Claude, or another local MCP client | Quick start |
| Plugin | The client supports repository plugin marketplaces | Plugin installation |
| Streamable HTTP | A team operates a governed shared instance | HTTP deployment and security |
| Embedded library | A Node.js application owns the MCP transport and SAP connections | Import createEmbeddedMcpServer from the package root |
The default is local stdio; no port, daemon, Windows service, or inbound
firewall rule is required.
Automated tests validate the MCP contracts, ADT argument ordering, safety
policies, output bounds, all 120 default v1 tools, all seven Resources, and the
legacy v0 surface using in-memory SAP implementations. SAP-dependent behavior
remains unverified until it succeeds against the selected live connection.
Existing SAP objects may be used for reads, searches, and analysis. Live mutation campaigns must use disposable development objects and the strict ownership and cleanup rules in Live SAP acceptance. The recorded system matrix is in Live SAP evidence.
| Topic | Document |
|---|---|
| Setup, profile changes, authentication, and multiple systems | Setup and profile management |
| HTTP, OIDC, API keys, roles, audit logs, and containers | HTTP deployment and security |
| Complete CLI command surface | CLI reference |
| Advanced ABAP workflows | Advanced workflows |
| Optional Screen/Dynpro and GUI Status bridge | Classic bridge |
| v1 migration and exact tool mapping | v1 migration and parity matrix |
| Live verification boundary | Compatibility matrix and acceptance procedure |
| Detailed multi-system Windows operation | Windows localhost guide |
| Registry and directory status | Directory submission reference |
| Problem | Check |
|---|---|
PROFILE_NOT_FOUND |
Run profile list; create a profile with setup or select the correct Server name. |
| SAP login fails | Run doctor <id> and verify URL, client, credentials, VPN, ADT activation, and SAP authorization. |
MCP -32000 (ConnectionClosed) |
Run the published package's help, then inspect the saved MCP command and client debug log. |
| Tools are missing after an update | Confirm the command uses @latest, restart the client, and inspect /mcp. |
PACKAGE_NOT_ALLOWED |
Edit the profile and include the target package, or use an unrestricted development profile deliberately. |
TRANSPORT_REQUIRED |
Supply an open transport for a non-local package. |
See Setup and profile management for authentication and platform-specific checks.
The canonical registry identity is io.github.Coaspe/sap-abap-mcp. Registry
and marketplace installs still run the npm package as a local stdio server;
SAP profiles and credentials remain on the user's machine. Publication does not
turn unverified SAP capabilities into live evidence. See the
directory reference for current listings.
SAP ABAP MCP does not send SAP profiles, credentials, source code, or tool
results to a publisher-operated service. It communicates only with destinations
selected by the user, including the configured SAP system and MCP host. See
PRIVACY.md and TERMS.md.
npm install
npm run check
npm audit --omit=dev
npm pack --dry-runSee CLI reference for local-build registration.
- Package:
@coaspe/sap-abap-mcp - Current release version:
1.4.2 - Runtime: Node.js 20 or later
- Default transport: local MCP over
stdio - SAP authentication: Basic Auth, OAuth client credentials, Authorization Code with PKCE, BTP service keys, or request-scoped OIDC bearer passthrough
- Secret storage: Windows DPAPI, macOS Keychain, or Linux environment variables
- Current API: v1 with 120 tools and seven Resources
- Legacy API: v0 with the complete 53-tool schema
- Some systems release object-bearing transports only through a GUI background
job. The server reports
TRANSPORT_RELEASE_UNSUPPORTEDinstead of guessing an undocumented ADT protocol. - abapGit tools require the abapGit
ADT_Backend, not only the SE38 report. - RAP generation depends on release-specific SAP services and suitable source objects.
- Screen/Dynpro and GUI Status access requires the optional reviewed bridge.
- Browser SSO-only, MFA-only, certificate-only, and Kerberos-only SAP systems require an explicitly supported OAuth flow or remain unsupported.
Use GitHub Discussions
for implementation questions and compatibility evidence. Never post SAP hosts,
credentials, source, transport numbers, tokens, or logs publicly. Commercial
evaluation options are described in SERVICES.md.
Licensed under the MIT License.
