Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_create_custom_field

Add custom fields to contacts in Dex CRM to store specialized information beyond standard contact details.

Instructions

Create a new custom field definition that can be set on any contact.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
custom_fieldYes

Implementation Reference

  • The handler logic and registration for dex_create_custom_field tool.
    server.tool(
      "dex_create_custom_field",
      "Create a new custom field definition that can be set on any contact.",
      {
        custom_field: z.object({
          name: z.string(),
          type: z.string().optional(),
        }),
      },
      async (args) => {
        try {
          const result = await dex.post("/v1/custom-fields/", {
            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