adt-mcp
Provides tools for reading and writing ABAP source code via SAP ADT, including navigating systems, searching objects, retrieving and updating source code, creating objects (CLAS, INTF, DDLS, etc.), and activating changes, with write safety controls per system.
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., "@adt-mcpshow me the source of class ZCL_MY_CLASS"
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.
ADT MCP (Python)
Multi-system MCP server for reading and writing ABAP source via SAP ADT,
with a local web admin to configure systems. One process serves both the
MCP endpoint (/mcp) and the web admin (/).
Install (Windows)
git clone https://github.com/nhattuan1305/adt-mcp
cd adt-mcp
install.bat REM creates .venv, installs everything, verifies the import
run.bat REM starts the server and opens the web adminOnly prerequisite: Python 3.10+ on the machine. install.bat finds it via
py -3 or python and skips the Microsoft Store stub; it creates a project
.venv so nothing global is touched. Flags:
Flag | Effect |
| Install into the Python already on PATH instead of |
| Skip Playwright (only fine if every system uses basic auth) |
Playwright is installed by default because cookie systems log in through a
browser. It drives the machine's own Chrome/Edge, so there is no browser
download; if neither is installed, run
.venv\Scripts\python -m playwright install chromium.
Configure the new machine
systems.json and cookies/ are gitignored — they hold credentials and are
never in the repo. After install.bat, pick one:
Add the system in the web admin (
run.bat→ http://127.0.0.1:8765) and log in once with the browser flow. Nothing secret has to be copied.**Copy
systems.json+cookies\by hand** from a working machine (USB, password manager, internal share — not email/chat). Fix the absolutecookie_filepaths afterwards, or re-login from the admin.
Until that is done the server runs and the admin opens, but list_systems
reports no systems.
Related MCP server: dassian-adt
Install (manual / non-Windows)
cd adt-mcp
python -m pip install -e . # -e matters: config, web/ and cookies/
# are read from the checkout
python -m pip install -r requirements.txt # dev/test depsRun
python -m adt_mcp # or: adt-mcp
# → http://127.0.0.1:8765 (MCP at /mcp, admin at /)Environment variables (all optional):
Variable | Default | Purpose |
|
| Port for MCP + web admin ( |
| the checkout | Folder holding |
|
| Explicit path to the systems config |
|
|
|
|
| Browser channel for cookie login ( |
|
| Chrome DevTools endpoint for |
Set ADT_MCP_HOME when the package is installed non-editable or run as a
service from another working directory.
Open http://127.0.0.1:8765 to add SAP systems (URL, client, language, auth).
Config is stored in systems.json (gitignored). See systems.example.json.
Cookie systems can be (re)authenticated from the web admin via a browser login.
Connect Claude Code
Add to .mcp.json:
{
"mcpServers": {
"sap-adt": { "type": "http", "url": "http://127.0.0.1:8765/mcp" }
}
}Tools
Read / navigate:
list_systems,list_package,search_objectsget_source,get_source_by_uri,get_class_method_source,get_class_include,get_object_structure,get_package_sourcegrep_package,find_references(where-used),cds_dependenciesget_context(object + compressed dependencies: CDS/BDEF/CLAS)get_revisions,get_revision_source,compare_sourcesyntax_check,run_unit_tests(ABAP Unit),data_preview(CDS/SQL data)trace_start,trace_list,trace_analyze(ABAP profiler: CPU hotspots + DB accesses)list_dumps,get_dump(ST22 runtime dumps: liệt kê + đọc chi tiết để phân tích lỗi)
Write (gated by safety, see below):
update_source,update_class_include,activatecreate_object(CLAS / INTF / DDLS / DDLX / BDEF / SRVD / SRVB / TABL)clone_package(clone toàn bộ object của một package sang package đích, thêm suffix_VN+ sửa tham chiếu chéo trong source; dry-run mặc định)
Cookie maintenance: refresh_cookies_for.
Write safety
Writes are off by default. Per system in systems.json:
allow_write: true— required to enable any create/update.write_packages: ["Z*", "$TMP"]— target package must match (default).
Delete is intentionally not supported.
Token economy
Tool schemas are sent to the model on every turn. Set ADT_MCP_TOOLS=core
to expose only the essential ~16 tools (smaller schema); default full
exposes all 29. Descriptions are kept terse.
ADT_MCP_TOOLS=core python -m adt_mcpTest
python -m pytest -vSecurity
systems.json,cookies/,*-cookies.txthold session secrets and are gitignored — never commit them.The server binds
127.0.0.1only.Stored passwords are plaintext. A
username/passwordis only kept to enable headless cookie refresh (refresh_cookies_for). For real systems prefer the cookie flows that store no password:mode: "browser"— log in once in a visible browser; only session cookies are saved (the persistent profile keeps SSO so re-login is rare).mode: "cdp"— attach to your already-authenticated Chrome. If you must keep a password, store it in an OS keyring / secrets manager and inject it intosystems.jsonat deploy time rather than committing it.
This server cannot be deployed
Maintenance
Related MCP Connectors
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.
A MCP server built for developers enabling Git based project management with project and personal…
The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.
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-

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- AlicenseNot gradedqualityBmaintenanceMCP server for SAP S/4HANA via the ADT API, enabling querying and reading SAP systems with production write protection.2 npmMIT
- AlicenseNot gradedqualityBmaintenanceMulti-system MCP server for reading and writing ABAP source via SAP ADT, with a local web admin, browser-based login, and tools for source navigation, editing, activation, testing, and debugging.1MIT