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
| Name | Required | Description | Default |
|---|---|---|---|
| connectorName | Yes | Name of the Connector to modify | |
| callName | Yes | Name of the connector call to delete |
Implementation Reference
- src/tools/connector-tools.ts:376-381 (handler)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); }); });
- src/tools/connector-tools.ts:360-367 (schema)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") },
- src/tools/connector-tools.ts:359-381 (registration)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); }); });