Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_update_tag

Modify tag names and colors in Dex CRM to organize contacts and improve data management.

Instructions

Update a tag's name or color by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagIdYes
nameNo
colorNo

Implementation Reference

  • The implementation of the 'dex_update_tag' tool, which handles updating a tag's name or color by its ID via a PUT request to the dex client.
    server.tool(
      "dex_update_tag",
      "Update a tag's name or color by ID.",
      {
        tagId: z.string(),
        name: z.string().optional(),
        color: z.string().optional(),
      },
      async (args) => {
        try {
          const result = await dex.put(`/v1/tags/${args.tagId}`, {
            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