Skip to main content
Glama

simplifier-mcp

by SimplifierIO

datatype-update

Create or update custom data types including structs, collections, and domain types for connectors and business objects in the Simplifier platform.

Instructions

#Create or update custom data types

Custom datatypes can be either

  • a struct type, which requires the definition of fields and their types (parameter "fields")

  • a collection type, which requires a datatype for its elements (parameter "collectionDatatype")

  • a domain type, which requires a parent type it is derived from (parameter "derivedFrom") These are mutually exclusive, so only specify exactly one of the three parameters.

In these parameters, referenced datatypes are specified by name. If it isn't a global datatype, the name must be prefixed with the namespace, separated with a slash.

Datatypes for connectors should be in the namespace "con/$name_of_connector", those for business objects in "bo/$name_of_bo".

Input Schema

NameRequiredDescriptionDefault
qualifiedNameYes
descriptionNo
derivedFromNo
collectionDatatypeNo
fieldsNo
tagsYes
projectAssignmentsNo

Input Schema (JSON Schema)

{ "properties": { "collectionDatatype": { "type": "string" }, "derivedFrom": { "type": "string" }, "description": { "default": "", "type": "string" }, "fields": { "items": { "additionalProperties": false, "properties": { "dataType": { "type": "string" }, "description": { "type": "string" }, "name": { "type": "string" }, "optional": { "type": "boolean" } }, "required": [ "name", "optional", "dataType" ], "type": "object" }, "type": "array" }, "projectAssignments": { "additionalProperties": false, "properties": { "projectsAfterChange": { "items": { "type": "string" }, "type": "array" }, "projectsBefore": { "items": { "type": "string" }, "type": "array" } }, "required": [ "projectsBefore", "projectsAfterChange" ], "type": "object" }, "qualifiedName": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "required": [ "qualifiedName", "tags" ], "type": "object" }

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