Skip to main content
Glama
rafteles2016

MCP Dynamics CRM Server

by rafteles2016

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
NameRequiredDescriptionDefault
stepIdYesID do step a ser removido

Implementation Reference

  • 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!`,
            },
          ],
  • 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"),
    });
  • Registration of the dynamics_delete_plugin_step tool.
    "dynamics_delete_plugin_step",

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/rafteles2016/mcpDynamics'

If you have feedback or need assistance with the MCP directory API, please join our Discord server