Skip to main content
Glama

connector-call-delete

Remove connector calls from the Simplifier Low Code Platform by specifying the connector name and call name to delete.

Instructions

Delete a Connector call

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
connectorNameYesName of the Connector to modify
callNameYesName of the connector call to delete

Implementation Reference

  • Handler function for 'connector-call-delete' tool that wraps the deletion call to simplifier.deleteConnectorCall with tracking.
    ({ connectorName, callName }) => { return wrapToolResult(`delete connector call ${connectorName}.${callName}`, async () => { const trackingKey = trackingToolPrefix + toolNameConnectorCallDelete return await simplifier.deleteConnectorCall(connectorName, callName, trackingKey); }); });
  • Input schema using Zod for connectorName and callName parameters.
    { description: `# Delete a Connector call`, inputSchema: { connectorName: z.string() .describe("Name of the Connector to modify"), callName: z.string() .describe("Name of the connector call to delete") },
  • MCP server tool registration for 'connector-call-delete', including schema, annotations, and handler.
    server.registerTool(toolNameConnectorCallDelete, { description: `# Delete a Connector call`, inputSchema: { connectorName: z.string() .describe("Name of the Connector to modify"), callName: z.string() .describe("Name of the connector call to delete") }, annotations: { title: "Delete a Connector Call", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: true, }, }, ({ connectorName, callName }) => { return wrapToolResult(`delete connector call ${connectorName}.${callName}`, async () => { const trackingKey = trackingToolPrefix + toolNameConnectorCallDelete return await simplifier.deleteConnectorCall(connectorName, callName, 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