Skip to main content
Glama

simplifier-mcp

by SimplifierIO

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

The server is available on npm: @simplifierag/simplifier-mcp. It can be run with npx @simplifierag/simplifier-mcp@latest, installation is not necessary.

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

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.

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SimplifierIO/simplifier-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server