Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_create_group

Create a new group to organize contacts in Dex CRM by specifying a name and optional emoji for better categorization.

Instructions

Create a new group for organizing contacts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
emojiNo

Implementation Reference

  • The actual execution logic for dex_create_group, which calls the Dex API to create a group.
    async (args) => {
      try {
        const result = await dex.post("/v1/groups/", {
          group: { name: args.name, emoji: args.emoji },
        });
        return toResult(result);
      } catch (error) {
        return toError(error);
      }
    }
  • The input schema definition for dex_create_group.
    {
      name: z.string(),
      emoji: z.string().optional(),
    },
  • Registration of the dex_create_group tool within the MCP server.
    server.tool(
      "dex_create_group",
      "Create a new group for organizing contacts.",
      {
        name: z.string(),
        emoji: z.string().optional(),
      },
      async (args) => {
        try {
          const result = await dex.post("/v1/groups/", {
            group: { name: args.name, emoji: args.emoji },
          });
          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