JSPM

  • Created
  • Published
  • Downloads 159
  • Score
    100M100P100Q109110F
  • License -

MCP Server for Simplifier Low Code Platform - enables creation of Connectors and BusinessObjects

Package Exports

  • @simplifierag/simplifier-mcp
  • @simplifierag/simplifier-mcp/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@simplifierag/simplifier-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Simplifier MCP Server

An MCP (Model Context Protocol) server that enables integration with the Simplifier Low Code Platform. This server provides tools and capabilities for creating and managing Simplifier Connectors and BusinessObjects through the platform's REST API.

Overview

The Simplifier MCP Server allows AI assistants to interact with the Simplifier Low Code Platform to:

  • Create and manage Simplifier Connectors: Integration components that connect external systems
  • Create and manage BusinessObjects (BOs): Server-side executed JavaScript functions for business logic
  • Execute BusinessObjects: Run JavaScript functions with parameters and retrieve results
  • Access platform resources: Browse connectors, business objects, and system information

Usage

Add the MCP to claude code ...

claude mcp add --env SIMPLIFIER_TOKEN=<your current simplifier token> --env SIMPLIFIER_BASE_URL=https://<yourinstance>-dev.simplifier.cloud -- simplifier npx @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.

{
  "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>"
      }
    }
  }
}