Back to Browse

Simplifier MCP Server

Developer ToolsUse Caution4.8MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP Server for Simplifier - manage Connectors, BusinessObjects, Datatypes and logins

About

MCP Server for Simplifier - manage Connectors, BusinessObjects, Datatypes and logins

Security Report

4.8
Use Caution4.8High Risk

This is a well-structured MCP server for the Simplifier low-code platform with good security practices. Authentication is properly enforced via environment variable tokens, permissions are appropriate for its purpose (connector/business object management), and code quality is high. Minor concerns around broad error handling and limited input validation on some dynamic configurations do not materially impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

3 files analyzed · 9 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

What You'll Need

Set these up before or after installing:

Your current Simplifier tokenRequired

Environment variable: SIMPLIFIER_TOKEN

The base URL of your Simplifier instanceOptional

Environment variable: SIMPLIFIER_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-simplifier-ag-simplifier-mcp": {
      "env": {
        "SIMPLIFIER_TOKEN": "your-simplifier-token-here",
        "SIMPLIFIER_BASE_URL": "your-simplifier-base-url-here"
      },
      "args": [
        "-y",
        "@simplifierag/simplifier-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Simplifier MCP Server

Simplifier is the leading low-code platform in the SAP ecosystem. Build custom apps in a full-stack low-code cloud development environment, reducing your dependency on full-scale coding. Integrate with ERP, CRM and other systems easily using standardised connectors.

Find more information in our community or try Simplifier for free.


This repository contains an MCP server (Model Context Protocol) that enables integration of AI assistants with the Simplifier Low Code Platform. It provides tools and resources for creating and managing Simplifier Connectors and BusinessObjects.

Overview

The Simplifier MCP Server allows to interact with a Simplifier instance to:

  • Manage Connectors and Logins: Integration components that connect external systems
  • Manage Business Objects: Server-side executed JavaScript functions for business logic
  • Manage Data Types: Data structures for interacting with Connectors and internal objects
  • Execute Business Object Functions: Run JavaScript functions with parameters and retrieve results
  • Execute Connector Calls: Call external systems via Simplifier Connector
  • Access platform resources: Browse connectors, business objects, and system information

Supported Connector types

Currently only the following connector types are fully supported:

  • REST
  • SOAP
  • SQL
  • SAPRFC

Client compatibility

The Simplifier MCP server exposes its data through two parallel surfaces so that every MCP client can use it in full, regardless of which parts of the MCP protocol that client supports:

  • Clients that implement MCP Resources (e.g. Claude Code, Claude Desktop, MCP Inspector) can browse and read Simplifier data through simplifier://… URIs — for example simplifier://businessobjects, simplifier://connector/{name}, or simplifier://documentation/….
  • Clients that only implement MCP Tools (e.g. OpenCode, Cursor, Cline, Continue, Windsurf) get equivalent read access through tools named *-list, *-get, documentation-get and connector-wizard-rfc-search.

Both surfaces share the same underlying implementation, so behaviour is identical. Where both are available, clients should prefer resources.

Usage

Check out Simplifier Community Docs on how to use and set up the MCP server best.

Add the MCP to claude code ...

Using node / npx:

claude mcp add simplifier npx @simplifierag/simplifier-mcp@latest --env SIMPLIFIER_TOKEN=<your current simplifier token> --env SIMPLIFIER_BASE_URL=https://<yourinstance>-dev.simplifier.cloud

Using Docker:

claude mcp add simplifier-docker docker -- run --rm -i --env SIMPLIFIER_TOKEN=<your current simplifier token> --env SIMPLIFIER_BASE_URL=https://<yourinstance>-dev.simplifier.cloud simplifierag/simplifier-mcp:latest

If your Simplifier is hosted on premise, then the SIMPLIFIER_BASE_URL of your DEV instance will be different from the mentioned schema.

After a new login to Simplifier

With every login to Simplifier your SimplifierToken will change. So you will have to:

  • exit your AI agent (in this example claude),
  • then remove the configuration of the MCP
claude mcp remove simplifier
  • and then add the MCP again with the new token (see upper command) and restart your AI agent

...or use this example configuration for claude code to use the MCP

e.g. in a file named .mcp.json placed in the directory, where claude is started.

Using node / npx:

{
  "mcpServers":  {
    "simplifier-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [ 
        "@simplifierag/simplifier-mcp@latest"
      ],
      "env": {
        "SIMPLIFIER_BASE_URL": "https://<yourinstance>-dev.simplifier.cloud",
        "SIMPLIFIER_TOKEN": "<your current simplifier token>"
      }
    }
  }
}

Using Docker:

{
  "mcpServers": {
    "simplifier-docker": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--env",
        "SIMPLIFIER_TOKEN",
        "--env",
        "SIMPLIFIER_BASE_URL",
        "simplifierag/simplifier-mcp:latest"
      ],
      "env": {
        "SIMPLIFIER_BASE_URL": "https://<yourinstance>-dev.simplifier.cloud",
        "SIMPLIFIER_TOKEN": "<your current simplifier token>"
      }
    }
  }
}

Troubleshooting

If the MCP fails to connect to Simplifier on startup, an error page will open in your browser with details on the failure and information on how to fix the problem.

Reviews

No reviews yet

Be the first to review this server!