Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_delete_custom_field

Permanently delete a custom field and remove its values from all contacts in Dex CRM.

Instructions

Permanently delete a custom field and remove its values from all contacts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customFieldIdYes

Implementation Reference

  • The implementation of the dex_delete_custom_field tool handler, which uses the dex client to send a DELETE request to the /v1/custom-fields/{customFieldId} endpoint.
    server.tool(
      "dex_delete_custom_field",
      "Permanently delete a custom field and remove its values from all contacts.",
      { customFieldId: z.string() },
      async (args) => {
        try {
          const result = await dex.delete(
            `/v1/custom-fields/${args.customFieldId}`
          );
          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