Skip to main content
Glama
rafteles2016

MCP Dynamics CRM Server

by rafteles2016

dynamics_update_form

Update the XML of a form in Microsoft Dynamics CRM to modify its structure and functionality.

Instructions

Atualiza o XML de um formulário

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
formIdYesID do formulário
formXmlYesXML do formulário atualizado

Implementation Reference

  • The handler for the dynamics_update_form tool which updates the formxml and publishes the change.
    async (params: z.infer<typeof UpdateFormSchema>) => {
      await client.update("systemforms", params.formId, {
        formxml: params.formXml,
      });
    
      // Publish the entity
      return {
        content: [
          {
  • Registration of the dynamics_update_form tool.
    server.tool(
      "dynamics_update_form",
      "Atualiza o XML de um formulário",
      UpdateFormSchema.shape,
  • Input schema definition for the dynamics_update_form tool.
    export const UpdateFormSchema = z.object({
      formId: z.string().describe("ID do formulário"),
      formXml: z.string().describe("XML do formulário atualizado"),
    });

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