Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_update_custom_field

Modify custom field definitions in Dex CRM by updating names or types to better organize contact data and improve workflow efficiency.

Instructions

Update a custom field definition by ID (e.g. rename it).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customFieldIdYes
custom_fieldYes

Implementation Reference

  • The handler for dex_update_custom_field, which performs a PUT request to update a custom field by ID.
    server.tool(
      "dex_update_custom_field",
      "Update a custom field definition by ID (e.g. rename it).",
      {
        customFieldId: z.string(),
        custom_field: z.object({
          name: z.string().optional(),
          type: z.string().optional(),
        }),
      },
      async (args) => {
        try {
          const result = await dex.put(
            `/v1/custom-fields/${args.customFieldId}`,
            { custom_field: args.custom_field }
          );
          return toResult(result);
        } catch (error) {
          return toError(error);
        }
      }
    );

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/byndcloud/unofficial-dex-mcp'

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