Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_create_tag

Create a new tag with a name and optional color to categorize and organize contacts in your CRM system.

Instructions

Create a new tag with a name and optional color for categorizing contacts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
colorNo

Implementation Reference

  • Handler implementation and registration of the dex_create_tag tool.
    server.tool(
      "dex_create_tag",
      "Create a new tag with a name and optional color for categorizing contacts.",
      {
        name: z.string(),
        color: z.string().optional(),
      },
      async (args) => {
        try {
          const result = await dex.post("/v1/tags/", {
            tag: { name: args.name, color: args.color },
          });
          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