abap-accelerator
Provides tools for interacting with SAP ABAP development objects via the ADT API, enabling management of source code, syntax checks, activation, unit tests, ATC checks, transport requests, and more.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@abap-acceleratorList ABAP objects in package ZDEV"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ABAP Accelerator MCP Server
SAP ADT API Model Context Protocol (MCP) server for ABAP development. Works with any MCP-compatible client including Claude Code, Amazon Q Developer, Kiro, Cursor, Windsurf, and more.
Fork notice: This is a fork of AWS ABAP Accelerator for Amazon Q Developer, repackaged for PyPI and optimized for local stdio runs. The original project targets Docker/ECS enterprise deployments; this fork focuses on the simplest path:
pip installand go.
Quick Start
pip install abap-acceleratorCreate a .env file or set environment variables:
SAP_HOST=your-sap-host.example.com # or host:port (e.g., 10.0.0.1:44300)
SAP_INSTANCE_NUMBER=00 # used to calculate port when SAP_HOST has no port
SAP_CLIENT=100
SAP_USERNAME=your_username
SAP_PASSWORD=your_passwordRun:
abap-acceleratorThat's it. The server starts in stdio mode and is ready for your MCP client.
Related MCP server: ABAP-ADT-API MCP-Server
MCP Client Configuration
Add to your client's MCP config file:
Claude Code (.mcp.json in project root):
{
"mcpServers": {
"abap-accelerator": {
"command": "abap-accelerator",
"env": {
"SAP_HOST": "your-sap-host.example.com",
"SAP_INSTANCE_NUMBER": "00",
"SAP_CLIENT": "100",
"SAP_USERNAME": "your_username",
"SAP_PASSWORD": "your_password"
}
}
}
}Amazon Q Developer (~/.aws/amazonq/mcp.json or workspace .amazonq/mcp.json):
{
"mcpServers": {
"abap-accelerator": {
"command": "abap-accelerator",
"env": {
"SAP_HOST": "your-sap-host.example.com",
"SAP_INSTANCE_NUMBER": "00",
"SAP_CLIENT": "100",
"SAP_USERNAME": "your_username",
"SAP_PASSWORD": "your_password"
}
}
}
}Kiro (.kiro/settings/mcp.json):
{
"mcpServers": {
"abap-accelerator": {
"command": "abap-accelerator",
"env": {
"SAP_HOST": "your-sap-host.example.com",
"SAP_INSTANCE_NUMBER": "00",
"SAP_CLIENT": "100",
"SAP_USERNAME": "your_username",
"SAP_PASSWORD": "your_password"
}
}
}
}Tip: If you run
abap-acceleratorfrom a directory with a.envfile, you can omit theenvblock — the server loads.envautomatically.
Environment Variables
Variable | Required | Default | Description |
| Yes | - | SAP hostname or host:port |
| Yes | - | Instance number (00-99), used to calculate port |
| Yes | - | SAP client number (e.g., 100) |
| Yes | - | SAP username |
| Yes | - | SAP password |
| No |
| SAP language |
| No |
| Use HTTPS |
| No |
| Verify SSL certificates (set |
| No | - | Path to custom CA certificate |
| No |
| Logging level (DEBUG, INFO, WARNING, ERROR) |
SAP Port Calculation
The server calculates the SAP port from the instance number:
Instance Number | HTTPS Port | HTTP Port |
00 | 44300 | 8000 |
01 | 44301 | 8001 |
02 | 44302 | 8002 |
Formula: HTTPS = 44300 + instance_number, HTTP = 8000 + instance_number
If SAP_HOST includes a port (e.g., 10.0.0.1:44300), the instance number is ignored.
Available Tools
Tool | Description |
| Check SAP connection status |
| List ABAP objects in a package |
| Get source code of an object |
| Search for ABAP objects |
| Create new ABAP object |
| Update source code |
| Check syntax of source code |
| Activate ABAP object |
| Batch activate objects |
| Run ATC quality checks |
| Execute unit tests |
| Get test classes for an object |
| Create/update test class |
| Get migration analysis |
| Get transport requests |
Environment Guidance
This tool provides direct access to ABAP development objects. Use it in non-production environments:
Intended | Not Recommended |
Development (DEV) | Production (PRD) |
Sandbox (SBX) | Pre-production |
Quality Assurance (QAS) | |
Test / Training / Demo |
Troubleshooting
SSL Certificate Errors (SSL: CERTIFICATE_VERIFY_FAILED):
Set
CUSTOM_CA_CERT_PATHto your corporate CA certFor testing only: set
SSL_VERIFY=false
Connection Timeout:
Verify SAP system is reachable from your network
Check firewall allows port 44300 (or your SAP port)
Verify SAP ADT services are enabled (transaction SICF)
Debug Logging:
Set
LOG_LEVEL=DEBUGfor verbose output
License
MIT No Attribution (MIT-0) — see LICENSE
Original work Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
This server cannot be deployed
Maintenance
Related MCP Connectors
List, read, edit, and deploy your GenMB AI-generated apps from any MCP client.
- AuroraOAuthbuild.aurora
Create, edit, preview, and deploy full-stack web apps to a live URL from any MCP client.
327 dev tools via REST API and MCP. Generate Dockerfiles, schemas, K8s, APIs, and more.
Related MCP Servers
- AlicenseCqualityNot gradedmaintenanceAn MCP server that facilitates seamless interaction with SAP ABAP systems to manage development objects, transport requests, and source code. It provides a comprehensive suite of tools for performing syntax checks, object searches, and code modifications via the ADT API.100-
- AlicenseCqualityDmaintenanceAn MCP server that enables seamless communication between ABAP systems and MCP clients using the ABAP Development Tools (ADT) API. It provides tools for managing ABAP objects, handling transport requests, and performing code analysis directly through MCP-compatible interfaces.100MIT

dassian-adtofficial
AlicenseNot gradedqualityDmaintenanceMCP server for SAP ABAP development via the ADT API. Connect AI assistants to your SAP system — read, write, test, and deploy ABAP code without SAP GUI.9MIT- AlicenseBqualityCmaintenanceA lightweight MCP adapter providing unified access to SAP ABAP metadata, source code, and diagnostics through ADT services.24216 npm3MIT