ABAP-ADT-API MCP-Server
MCP-Server for SAP ABAP wrapping abap-adt-api
Overview
The ABAP-ADT-API MCP-Server is a Model Context Protocol (MCP) server designed to facilitate seamless communication between ABAP systems and MCP clients, enhancing ABAP development workflows.
To use the MCP-Server, install it via Smithery, configure your environment variables for SAP connection, and run the server to interact with it using MCP clients.
- Secure authentication with ABAP systems. - Create, read, update, and delete ABAP objects. - Manage transport requests. - Perform code analysis and syntax checks. - Extensible with additional tools. - Session management capabilities.
- Managing ABAP objects in a development environment.
- Automating transport request handling.
- Conducting code analysis for ABAP programs.
- Facilitating collaboration among ABAP developers.
Add to your AI client
Use these steps to connect ABAP-ADT-API MCP-Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-abap-abap-adt-api-mario-andreschak": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-abap-abap-adt-api-mario-andreschak"
]
}
}
}FAQ
**What is the purpose of the MCP-Server?**
It facilitates communication between ABAP systems and MCP clients, streamlining ABAP development tasks.
**Is there a specific environment required?**
Yes, Node.js and access to an ABAP system are required.
**Can I extend the server with additional tools?**
Yes, the server is designed to be extensible with additional tools and resources.