Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_delete_contact

Permanently delete a contact and all associated data from your Dex CRM using the contact ID.

Instructions

Permanently delete a contact by ID. Removes the contact and all associated data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contactIdYes

Implementation Reference

  • The implementation of the 'dex_delete_contact' tool, which registers the tool with the server, defines the input schema, and executes the delete request to the API.
    server.tool(
      "dex_delete_contact",
      "Permanently delete a contact by ID. Removes the contact and all associated data.",
      { contactId: z.string() },
      async (args) => {
        try {
          const result = await dex.delete(`/v1/contacts/${args.contactId}`);
          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