dynamics_delete_plugin_step
Remove registered plugin steps from Microsoft Dynamics CRM to manage custom business logic and maintain system performance.
Instructions
Remove um step de plugin registrado
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stepId | Yes | ID do step a ser removido |
Implementation Reference
- src/tools/plugins/index.ts:258-270 (handler)The handler function for the dynamics_delete_plugin_step tool.
server.tool( "dynamics_delete_plugin_step", "Remove um step de plugin registrado", DeletePluginStepSchema.shape, async (params: z.infer<typeof DeletePluginStepSchema>) => { await client.remove("sdkmessageprocessingsteps", params.stepId); return { content: [ { type: "text" as const, text: `Step ${params.stepId} removido com sucesso!`, }, ], - src/tools/plugins/index.ts:51-53 (schema)Input validation schema for the dynamics_delete_plugin_step tool.
export const DeletePluginStepSchema = z.object({ stepId: z.string().describe("ID do step a ser removido"), }); - src/tools/plugins/index.ts:259-259 (registration)Registration of the dynamics_delete_plugin_step tool.
"dynamics_delete_plugin_step",