Skip to main content
Glama

businessobject-function-delete

Remove specific functions from Business Objects in the Simplifier Low Code Platform by specifying the business object and function names.

Instructions

Delete an existing Business Object Function

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
businessObjectNameYes
functionNameYes

Implementation Reference

  • Handler function that performs the deletion of a Business Object function by calling simplifier.deleteServerBusinessObjectFunction with tracking.
    async ({ businessObjectName, functionName }) => { return wrapToolResult(`Delete Business Object Function ${businessObjectName}.${functionName}`, async () => { const trackingKey = trackingToolPrefix + toolNameBusinessObjectFunctionDelete return await simplifier.deleteServerBusinessObjectFunction(businessObjectName, functionName, trackingKey); }) });
  • Input schema validation using Zod for the required parameters: businessObjectName and functionName.
    { businessObjectName: z.string(), functionName: z.string() },
  • Tool registration using McpServer.tool() method, defining the tool name, description, input schema, metadata hints, and inline handler function.
    const toolNameBusinessObjectFunctionDelete = "businessobject-function-delete" server.tool(toolNameBusinessObjectFunctionDelete, `# Delete an existing Business Object Function`, { businessObjectName: z.string(), functionName: z.string() }, { title: "Delete a Business Object Function", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false }, async ({ businessObjectName, functionName }) => { return wrapToolResult(`Delete Business Object Function ${businessObjectName}.${functionName}`, async () => { const trackingKey = trackingToolPrefix + toolNameBusinessObjectFunctionDelete return await simplifier.deleteServerBusinessObjectFunction(businessObjectName, functionName, trackingKey); }) });
  • Top-level registration call to registerServerBusinessObjectTools within registerTools, which includes the businessobject-function-delete tool.
    registerServerBusinessObjectTools(server, simplifier)

Latest Blog Posts

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