Skip to main content
Glama
rafteles2016

MCP Dynamics CRM Server

by rafteles2016

dynamics_remove_solution_component

Remove a component from a Dynamics CRM solution by specifying the solution name, component ID, and component type to manage solution configurations.

Instructions

Remove um componente de uma solução

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
solutionUniqueNameYesNome único da solução
componentIdYesID do componente
componentTypeYesTipo do componente

Implementation Reference

  • Handler implementation for dynamics_remove_solution_component.
    server.tool(
      "dynamics_remove_solution_component",
      "Remove um componente de uma solução",
      RemoveComponentFromSolutionSchema.shape,
      async (params: z.infer<typeof RemoveComponentFromSolutionSchema>) => {
        await client.executeAction("RemoveSolutionComponent", {
          ComponentId: params.componentId,
          ComponentType: params.componentType,
          SolutionUniqueName: params.solutionUniqueName,
        });
    
        return {
          content: [
            {
              type: "text" as const,
              text: `Componente removido da solução ${params.solutionUniqueName}!`,
            },
          ],
        };
  • Zod schema definition for RemoveComponentFromSolutionSchema used by the tool.
    export const RemoveComponentFromSolutionSchema = z.object({
      solutionUniqueName: z.string().describe("Nome único da solução"),
      componentId: z.string().describe("ID do componente"),
      componentType: z.number().describe("Tipo do componente"),
    });

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