Skip to main content
Glama

sap-system-delete

Remove an existing SAP system from the Simplifier Low Code Platform by specifying its name to manage system configurations.

Instructions

Delete an existing SAP system

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Implementation Reference

  • The handler function for the 'sap-system-delete' tool. It wraps the deletion call to simplifier.deleteSapSystem with tracking and error handling using wrapToolResult.
    async ({ name }) => { return wrapToolResult(`Delete SAP system ${name}`, async () => { const trackingKey = trackingToolPrefix + toolNameSapSystemDelete; return await simplifier.deleteSapSystem(name, trackingKey); }) });
  • Zod input schema for the tool, defining a single required 'name' parameter of type string.
    { name: z.string() },
  • Direct registration of the 'sap-system-delete' tool using server.tool(), including name constant, description, input schema, metadata hints, and handler function.
    const toolNameSapSystemDelete = "sap-system-delete"; server.tool(toolNameSapSystemDelete, `# Delete an existing SAP system`, { name: z.string() }, { title: "Delete a SAP system", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false }, async ({ name }) => { return wrapToolResult(`Delete SAP system ${name}`, async () => { const trackingKey = trackingToolPrefix + toolNameSapSystemDelete; return await simplifier.deleteSapSystem(name, trackingKey); }) });
  • Top-level registration call to registerSapSystemTools within the main registerTools function, which registers all tools including sap-system-delete.
    registerSapSystemTools(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