Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_delete_note

Remove a note permanently by ID and delete its timeline entry from all linked contacts in Dex CRM.

Instructions

Permanently delete a note by ID. Removes the timeline entry from all associated contacts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteIdYes

Implementation Reference

  • The tool 'dex_delete_note' is registered and implemented directly within the registerTimelineTools function. It uses the dex client to perform a DELETE request to the timeline endpoint.
    server.tool(
      "dex_delete_note",
      "Permanently delete a note by ID. Removes the timeline entry from all associated contacts.",
      { noteId: z.string() },
      async (args) => {
        try {
          const result = await dex.delete(`/v1/timeline/${args.noteId}`);
          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