{
  "markdown": "# Simplifier MCP Server\n  \nSimplifier is the leading low-code platform in the SAP ecosystem. Build custom\napps in a full-stack low-code cloud development environment, reducing your\ndependency on full-scale coding. Integrate with ERP, CRM and other systems\neasily using standardised connectors.\n\nFind more information in our [community](https://community.simplifier.io) or try\nSimplifier [for free](https://community.simplifier.io/start-for-free).\n\n---\n\nThis repository contains an MCP server (Model Context Protocol) that enables\nintegration of AI assistants with the **[Simplifier Low Code Platform](https://simplifier.io/platform/)**.\nIt provides tools and resources for creating and managing Simplifier Connectors and BusinessObjects.\n\n## Overview\n\nThe Simplifier MCP Server allows to interact with a Simplifier instance to:\n\n- **Manage Connectors and Logins**: Integration components that connect external systems\n- **Manage Business Objects**: Server-side executed JavaScript functions for business logic\n- **Manage Data Types**: Data structures for interacting with Connectors and internal objects\n- **Execute Business Object Functions**: Run JavaScript functions with parameters and retrieve results\n- **Execute Connector Calls**: Call external systems via Simplifier Connector\n- **Access platform resources**: Browse connectors, business objects, and system information\n\n### Supported Connector types\n\nCurrently only the following connector types are fully supported:\n\n* REST\n* SOAP\n* SQL\n* SAPRFC\n\n### Client compatibility\n\nThe Simplifier MCP server exposes its data through two parallel surfaces so that\nevery MCP client can use it in full, regardless of which parts of the MCP\nprotocol that client supports:\n\n* Clients that implement MCP **Resources** (e.g. Claude Code, Claude Desktop,\n  MCP Inspector) can browse and read Simplifier data through\n  `simplifier://…` URIs — for example `simplifier://businessobjects`,\n  `simplifier://connector/{name}`, or `simplifier://documentation/…`.\n* Clients that only implement MCP **Tools** (e.g. OpenCode, Cursor, Cline,\n  Continue, Windsurf) get equivalent read access through tools named\n  `*-list`, `*-get`, `documentation-get` and `connector-wizard-rfc-search`.\n\nBoth surfaces share the same underlying implementation, so behaviour is\nidentical. Where both are available, clients should prefer resources.\n\n\n## Usage\n\nCheck out [Simplifier Community Docs](https://community.simplifier.io/doc/current-release/extend/setup-mcp-to-interact-with-ai-models/)\non how to use and set up the MCP server best.\n\n### Add the MCP to claude code ...\n\n**Using node / npx:**\n```\nclaude mcp add simplifier npx @simplifierag/simplifier-mcp@latest --env SIMPLIFIER_TOKEN=<your current simplifier token> --env SIMPLIFIER_BASE_URL=https://<yourinstance>-dev.simplifier.cloud\n```\n\n**Using Docker:**\n```\nclaude 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\n```\n\nIf your Simplifier is hosted on premise, then the `SIMPLIFIER_BASE_URL` of your DEV instance will be different from the mentioned schema.\n#### After a new login to Simplifier\nWith every login to Simplifier your SimplifierToken will change. So you will have to:\n - exit your AI agent (in this example claude),\n - then remove the configuration of the MCP\n```\nclaude mcp remove simplifier\n```\n - and then add the MCP again with the new token (see upper command) and restart your AI agent\n\n### ...or use this example configuration for claude code to use the MCP\ne.g. in a file named .mcp.json placed in the directory, where claude is started.\n\n**Using node / npx:**\n```json\n{\n  \"mcpServers\":  {\n    \"simplifier-mcp\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [ \n        \"@simplifierag/simplifier-mcp@latest\"\n      ],\n      \"env\": {\n        \"SIMPLIFIER_BASE_URL\": \"https://<yourinstance>-dev.simplifier.cloud\",\n        \"SIMPLIFIER_TOKEN\": \"<your current simplifier token>\"\n      }\n    }\n  }\n}\n```\n\n**Using Docker:**\n```json\n{\n  \"mcpServers\": {\n    \"simplifier-docker\": {\n      \"type\": \"stdio\",\n      \"command\": \"docker\",\n      \"args\": [\n        \"run\",\n        \"--rm\",\n        \"-i\",\n        \"--env\",\n        \"SIMPLIFIER_TOKEN\",\n        \"--env\",\n        \"SIMPLIFIER_BASE_URL\",\n        \"simplifierag/simplifier-mcp:latest\"\n      ],\n      \"env\": {\n        \"SIMPLIFIER_BASE_URL\": \"https://<yourinstance>-dev.simplifier.cloud\",\n        \"SIMPLIFIER_TOKEN\": \"<your current simplifier token>\"\n      }\n    }\n  }\n}\n```\n\n### Troubleshooting\n\nIf the MCP fails to connect to Simplifier on startup, an error page will open in\nyour browser with details on the failure and information on how to fix the\nproblem.\n",
  "bytes": 4768,
  "sha": "efaafe555e649409c94543fd68d1f9fcf2ca4a4b131744973ff4a0337c7dbff7",
  "repo_slug": "simplifier-ag/simplifier-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_simplifier_ag_simplifier_mcp_f6d82307/readme"
}