MCP Abap Adt MCP Server

ABAP ADT (ABAP Development Tools) MCP Server for interacting with SAP systems

Local serverstdio

What is the MCP Abap Adt MCP server?

ABAP ADT (ABAP Development Tools) MCP Server for interacting with SAP systems. That is what the mcp abap adt mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

This guide is designed for beginners, so we'll walk through everything step-by-step. We'll cover:

The tools it exposes

The server publishes 14 tools. What each one is for:

  • GetProgram — Retrieve ABAP program source code
  • GetClass — Retrieve ABAP class source code
  • GetFunctionGroup — Retrieve ABAP Function Group source code
  • GetFunction — Retrieve ABAP Function Module source code
  • GetStructure — Retrieve ABAP Structure
  • GetTable — Retrieve ABAP table structure
  • GetTableContents — Retrieve contents of an ABAP table
  • GetCDSView — Retrieve CDS view (DDL source) source code
  • GetPackage — Retrieve ABAP package details
  • GetTypeInfo — Retrieve ABAP type information
  • GetInclude — Retrieve ABAP include source code
  • SearchObject — Search for ABAP objects using quick search

Getting it running

Installation goes through your MCP client rather than a global install: point it at mcp-abap-adt on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: SAP_URL, SAP_USERNAME, SAP_PASSWORD, SAP_CLIENT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Abap Adt's toolset — GetProgram, GetClass, GetFunctionGroup and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mario-andreschak; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Abap Adt.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
GetProgramRetrieve ABAP program source code.
GetClassRetrieve ABAP class source code.
GetFunctionGroupRetrieve ABAP Function Group source code.
GetFunctionRetrieve ABAP Function Module source code.
GetStructureRetrieve ABAP Structure.
GetTableRetrieve ABAP table structure.
GetTableContentsRetrieve contents of an ABAP table.
GetCDSViewRetrieve CDS view (DDL source) source code.
GetPackageRetrieve ABAP package details.
GetTypeInfoRetrieve ABAP type information.
GetIncludeRetrieve ABAP include source code
SearchObjectSearch for ABAP objects using quick search.
GetInterfaceRetrieve ABAP interface source code.
GetTransactionRetrieve ABAP transaction details.

How to install the MCP Abap Adt MCP server

{
  "mcpServers": {
    "mcp-abap-adt": {
      "type": "http",
      "url": "http://localhost:4200/mcp-proxy/mcp-abap-adt"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SAP_URLEndpoint or connection string the server talks to.Yes
SAP_USERNAMEConfiguration value read at startup.Optional
SAP_PASSWORDConfiguration value read at startup.Optional
SAP_CLIENTConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Abap Adt to GetProgram.
  • Use MCP Abap Adt to GetClass.
  • Use MCP Abap Adt to GetFunctionGroup.

Frequently asked questions

It connects MCP Abap Adt to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (GetProgram, GetClass, GetFunctionGroup, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Abap Adt directly.