Skip to main content
Glama

businessobject-delete

Remove a Business Object from the Simplifier Low Code Platform. Delete specific business objects by name to manage your platform resources effectively.

Instructions

Delete an existing Business Object

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Implementation Reference

  • The asynchronous handler function that implements the core logic of the 'businessobject-delete' tool. It wraps the deletion call to the Simplifier client with tracking and error handling.
    async ({ name }) => { return wrapToolResult(`Delete Business Object ${name}`, async () => { const trackingKey = trackingToolPrefix + toolNameBusinessObjectDelete return await simplifier.deleteServerBusinessObject(name, trackingKey); }) });
  • The input schema for the 'businessobject-delete' tool, defining a single required string parameter 'name' for the business object to delete.
    { name: z.string() },
  • The registration of the 'businessobject-delete' tool on the MCP server, including name, description, input schema, hints, and handler function.
    const toolNameBusinessObjectDelete = "businessobject-delete" server.tool(toolNameBusinessObjectDelete, `# Delete an existing Business Object`, { name: z.string() }, { title: "Delete a Business Object", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false }, async ({ name }) => { return wrapToolResult(`Delete Business Object ${name}`, async () => { const trackingKey = trackingToolPrefix + toolNameBusinessObjectDelete return await simplifier.deleteServerBusinessObject(name, trackingKey); }) });

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