Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_update_note

Modify existing notes in Dex CRM by updating text, meeting type, event time, contacts, or custom emoji to keep records current.

Instructions

Update a note by ID. Can modify the note text, event_time, meeting_type ('call', 'coffee', 'email', 'meal', 'meeting', 'networking', 'note', 'other', 'party', 'text'), associated contacts (timeline_items_contacts), or custom_emoji. The meeting_type_id is resolved automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteIdYes
noteYes

Implementation Reference

  • Handler and registration for the 'dex_update_note' MCP tool, which updates a note in the Dex system via a PUT request.
    server.tool(
      "dex_update_note",
      "Update a note by ID. Can modify the note text, event_time, meeting_type ('call', 'coffee', 'email', 'meal', 'meeting', 'networking', 'note', 'other', 'party', 'text'), associated contacts (timeline_items_contacts), or custom_emoji. The meeting_type_id is resolved automatically.",
      {
        noteId: z.string(),
        note: z.object({
          note: z.string().optional(),
          event_time: z.string().optional(),
          meeting_type: z.enum(meetingTypes).optional(),
          custom_emoji: z.string().optional(),
          timeline_items_contacts: z.array(timelineContactSchema).optional(),
        }),
      },
      async (args) => {
        try {
          const noteBody = await enrichNoteBody(
            args.note as unknown as Record<string, unknown>
          );
          const result = await dex.put(`/v1/timeline/${args.noteId}`, {
            note: noteBody,
          });
          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