MCP Server for Simplifier Low Code Platform - enables creation of Connectors and BusinessObjects
npm install @simplifierag/simplifier-mcpFind 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.
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
Currently only the following connector types are fully supported:
* REST
* SOAP
* SQL
* SAPRFC
Check out Simplifier Community Docs
on how to use and set up the MCP server best.
Using node / npx:
```
claude mcp add simplifier npx @simplifierag/simplifier-mcp@latest --env SIMPLIFIER_TOKEN=
Using Docker:
``
claude mcp add simplifier-docker docker -- run --rm -i --env SIMPLIFIER_TOKEN=
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
Using node / npx:
`json`
{
"mcpServers": {
"simplifier-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"@simplifierag/simplifier-mcp@latest"
],
"env": {
"SIMPLIFIER_BASE_URL": "https://
"SIMPLIFIER_TOKEN": "
}
}
}
}
Using Docker:
`json``
{
"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://
"SIMPLIFIER_TOKEN": "
}
}
}
}
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.