drio
Open app

MCP SAP GUI Server

Source

MCP server that allows simple SAP GUI interaction for LLM models using simulated mouse clicks and keyboard input.

Catalog onlyCatalog onlySTDIO

Overview

MCP SAP GUI Server is a Model Context Protocol (MCP) server designed for automating interactions with SAP GUI, allowing programmatic control of SAP transactions through simulated mouse clicks and keyboard inputs.

To use the MCP SAP GUI Server, clone the GitHub repository, run the setup script to install, configure your SAP credentials, and then use the provided tools to automate SAP GUI interactions.

  • Automates SAP GUI interactions using simulated inputs. - Supports various tools for transaction management and interface interaction. - Provides options for capturing screenshots in different formats.
  1. Automating repetitive SAP transactions.
  2. Integrating SAP GUI automation with AI models for enhanced productivity.
  3. Testing SAP GUI applications through automated scripts.

Add to your AI client

Use these steps to connect MCP SAP GUI 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-sap-gui-mario-andreschak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-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-sap-gui-mario-andreschak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-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-sap-gui-mario-andreschak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-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-sap-gui-mario-andreschak": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-mario-andreschak"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-sap-gui-mario-andreschak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-mario-andreschak"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-sap-gui-mario-andreschak": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sap-gui-mario-andreschak"
      ]
    }
  }
}

FAQ

What are the requirements to run MCP SAP GUI Server?

You need Python 3.8 or higher, SAP GUI installed, valid SAP credentials, and Node.js for npx.

Is there a risk of errors when using this tool?

Yes, incorrect interactions with SAP can have serious consequences, so actions must be performed with precision.

Can I customize the automation scripts?

Yes, you can modify the provided scripts to suit your specific automation needs.

MCP SAP GUI Server — MCP Registry